From 3f83b476bea040d4c35c710331dcd979f86ddf38 Mon Sep 17 00:00:00 2001 From: Tomas Holusa Date: Wed, 8 Dec 2004 10:44:14 +0000 Subject: [PATCH] fb-charconv now not closing wrapped stream, only flushing it updated all places, when used this wrapper and close wrapped stream manually --- charset/fb-charconv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 2.39.2