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
f118484f
...
f118484f4736d9f809806e4b961a65b7dd55320b
authored
2002-02-07 07:51:47 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(imap4d_append0): Added missing call to stream_open()
1 parent
dcc38464
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
imap4d/append.c
imap4d/append.c
View file @
f118484
...
...
@@ -78,7 +78,8 @@ imap4d_append0 (mailbox_t mbox, int flags, char *text)
if
(
mailbox_open
(
tmp
,
MU_STREAM_READ
)
!=
0
)
return
1
;
if
(
memory_stream_create
(
&
stream
,
0
,
0
))
if
(
memory_stream_create
(
&
stream
,
0
,
MU_STREAM_RDWR
)
||
stream_open
(
stream
))
{
mailbox_close
(
tmp
);
return
1
;
...
...
Please
register
or
sign in
to post a comment