Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
0351fffa
...
0351fffa71fcdb8e28ec349067f8a1eaf2bdc900
authored
2002-05-02 12:33:25 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(_get_address_part): Bugfix. Was passing too short a length to fun().
1 parent
f636b941
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
libmu_scm/mu_address.c
libmu_scm/mu_address.c
View file @
0351fff
...
...
@@ -56,7 +56,7 @@ _get_address_part (const char *func_name, address_get_fp fun,
return
SCM_BOOL_F
;
}
if
((
*
fun
)
(
addr
,
num
,
str
,
length
,
NULL
)
==
0
)
if
((
*
fun
)
(
addr
,
num
,
str
,
length
+
1
,
NULL
)
==
0
)
ret
=
scm_makfrom0str
(
str
);
else
ret
=
SCM_BOOL_F
;
...
...
Please
register
or
sign in
to post a comment