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
c42e6194
...
c42e619475166b5a6385d52fa0ed5f301d9db0b8
authored
2011-12-12 02:16:21 +0200
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Bugfix in imap4d.
* imap4d/util.c (util_getfullpath): Use mu_stpcpy.
1 parent
eae05c42
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
imap4d/util.c
imap4d/util.c
View file @
c42e619
...
...
@@ -37,7 +37,7 @@ util_getfullpath (const char *name, const char *delim)
malloc
(
strlen
(
imap4d_homedir
)
+
strlen
(
delim
)
+
strlen
(
exp
)
+
1
);
if
(
!
s
)
imap4d_bye
(
ERR_NO_MEM
);
p
=
str
cpy
(
s
,
imap4d_homedir
);
p
=
mu_stp
cpy
(
s
,
imap4d_homedir
);
p
=
mu_stpcpy
(
p
,
(
char
*
)
delim
);
strcpy
(
p
,
exp
);
free
(
exp
);
...
...
Please
register
or
sign in
to post a comment