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
91dfd76f
...
91dfd76f25b460e27663701bc1e30a5af1ab2c77
authored
2000-11-18 18:48:13 +0000
by
Alain Magloire
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
overflow by 1 byte, ... sigh.
1 parent
3ef2ebb6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
mailbox/mbx_mbox.c
mailbox/mbx_mbox.c
View file @
91dfd76
...
...
@@ -410,7 +410,7 @@ mbox_tmpfile (mailbox_t mailbox, char **pbox)
else
basename
=
mud
->
name
;
*
pbox
=
calloc
(
strlen
(
tmpdir
)
+
strlen
(
"MBOX_"
)
+
strlen
(
basename
)
+
1
,
sizeof
(
char
));
strlen
(
basename
)
+
2
/* separator + null */
,
sizeof
(
char
));
if
(
*
pbox
==
NULL
)
return
NULL
;
sprintf
(
*
pbox
,
"%s/%s%s"
,
tmpdir
,
"MBOX_"
,
basename
);
...
...
Please
register
or
sign in
to post a comment