projects
/
mmh
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7e669f1
)
and close iconv handle if encoded block empty
author
Oliver Kiddle
<okiddle@yahoo.co.uk>
Sun, 5 Mar 2006 14:48:05 +0000
(14:48 +0000)
committer
Oliver Kiddle
<okiddle@yahoo.co.uk>
Sun, 5 Mar 2006 14:48:05 +0000
(14:48 +0000)
sbr/fmt_rfc2047.c
patch
|
blob
|
history
diff --git
a/sbr/fmt_rfc2047.c
b/sbr/fmt_rfc2047.c
index
83ef21e
..
7013cea
100644
(file)
--- a/
sbr/fmt_rfc2047.c
+++ b/
sbr/fmt_rfc2047.c
@@
-200,8
+200,10
@@
decode_rfc2047 (char *str, char *dst, size_t dstlen)
* empty encoded text. This ensures that we don't
* malloc 0 bytes but skip on to the end
*/
- if (endofmime == startofmime)
+ if (endofmime == startofmime) {
use_iconv = 0;
+ iconv_close(cd);
+ }
if (use_iconv) {
saveq = q;