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
6ed3393f
...
6ed3393f0602626b2b15faa3e4f9181568053ee0
authored
2006-05-23 12:48:22 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(trans_read): Bugfix. Do not break the
loop if there are characters left in the buffer.
1 parent
0bdd8432
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
mailbox/filter_trans.c
mailbox/filter_trans.c
View file @
6ed3393
...
...
@@ -147,7 +147,7 @@ trans_read (mu_filter_t filter, char *optr, size_t osize, mu_off_t offset,
}
ts
->
s_offset
=
i
;
}
if
(
wbytes
==
0
&&
ts
->
s_offset
==
0
)
if
(
wbytes
==
0
&&
ts
->
w_whd
-
ts
->
w_rhd
==
0
)
break
;
}
return
ret
;
...
...
Please
register
or
sign in
to post a comment