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
1c3f803f
...
1c3f803f6cace962c2440c358a855a18cfad3330
authored
2001-11-01 15:32:08 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
mailbox_get_stream(): Fixed funny bug (introduced Dec 4, 2000).
1 parent
dcd50df5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
mailbox/mailbox.c
mailbox/mailbox.c
View file @
1c3f803
...
...
@@ -384,7 +384,7 @@ mailbox_set_stream (mailbox_t mbox, stream_t stream)
int
mailbox_get_stream
(
mailbox_t
mbox
,
stream_t
*
pstream
)
{
if
(
mbox
==
NULL
||
pstream
)
if
(
mbox
==
NULL
||
pstream
==
NULL
)
return
EINVAL
;
/* The stream is set on the folder if exist, not the mailbox. */
if
(
mbox
->
folder
)
...
...
Please
register
or
sign in
to post a comment