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
c958b5b0
...
c958b5b0f83b82b95f5dfe872cd87f4e6d68b026
authored
2003-03-14 14:44:52 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(_body_readline,_body_stream_size): Bugfix.
1 parent
a68a5bff
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
mh/mh_stream.c
mh/mh_stream.c
View file @
c958b5b
...
...
@@ -330,7 +330,8 @@ static int
_body_readline
(
stream_t
stream
,
char
*
optr
,
size_t
osize
,
off_t
offset
,
size_t
*
nbytes
)
{
message_t
msg
=
stream_get_owner
(
stream
);
body_t
body
=
stream_get_owner
(
stream
);
message_t
msg
=
body_get_owner
(
body
);
struct
_mhdraft_message
*
mp
=
message_get_owner
(
msg
);
stream_t
str
;
...
...
@@ -341,7 +342,8 @@ _body_readline (stream_t stream, char *optr, size_t osize,
static
int
_body_stream_size
(
stream_t
stream
,
off_t
*
psize
)
{
message_t
msg
=
stream_get_owner
(
stream
);
body_t
body
=
stream_get_owner
(
stream
);
message_t
msg
=
body_get_owner
(
body
);
struct
_mhdraft_message
*
mp
=
message_get_owner
(
msg
);
if
(
psize
)
...
...
Please
register
or
sign in
to post a comment