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
35840f9c
...
35840f9c2dcab6cc749c3aba864d698bf8d03942
authored
2007-11-06 10:29:37 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(message_stream_size): Bugfix.
1 parent
ca943289
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletions
mailbox/message.c
mailbox/message.c
View file @
35840f9
...
...
@@ -933,7 +933,12 @@ static int
message_stream_size
(
mu_stream_t
stream
,
mu_off_t
*
psize
)
{
mu_message_t
msg
=
mu_stream_get_owner
(
stream
);
return
mu_message_size
(
msg
,
(
size_t
*
)
psize
);
size_t
size
;
int
rc
=
mu_message_size
(
msg
,
&
size
);
/* FIXME: should it get mu_off_t as
its 2nd argument */
if
(
rc
==
0
)
*
psize
=
size
;
return
rc
;
}
static
int
...
...
Please
register
or
sign in
to post a comment