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
75226e9c
...
75226e9c4464230891bbf8eb7dd6ef81185093ac
authored
2008-01-24 17:21:41 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(mu_stream_vprintf): Bugfix.
1 parent
23b0457b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
mailbox/stream.c
mailbox/stream.c
View file @
75226e9
...
...
@@ -515,7 +515,7 @@ mu_stream_vprintf (mu_stream_t os, mu_off_t *poff, const char *fmt, va_list ap)
free
(
buf
);
return
ENOMEM
;
}
newbuf
=
realloc
(
buf
,
buf
len
);
newbuf
=
realloc
(
buf
,
new
len
);
if
(
newbuf
==
NULL
)
{
free
(
buf
);
...
...
Please
register
or
sign in
to post a comment