From: Tomas Holusa Date: Wed, 8 Dec 2004 10:44:14 +0000 (+0000) Subject: fb-charconv now not closing wrapped stream, only flushing it X-Git-Tag: holmes-import~859 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=3f83b476bea040d4c35c710331dcd979f86ddf38;p=libucw.git fb-charconv now not closing wrapped stream, only flushing it updated all places, when used this wrapper and close wrapped stream manually --- diff --git a/charset/fb-charconv.c b/charset/fb-charconv.c index a7ba616f..9c54c883 100644 --- a/charset/fb-charconv.c +++ b/charset/fb-charconv.c @@ -49,7 +49,7 @@ fb_cc_spout(struct fastbuf *f) static void fb_cc_close(struct fastbuf *f) { - bclose(FB_CC(f)->out); + bflush(FB_CC(f)->out); xfree(f); }