mailing list of musl libc
 help / color / mirror / code / Atom feed
* [PATCH] make fflush_unlocked(NULL) work
@ 2016-09-18 19:44 Denys Vlasenko
  2016-09-18 20:36 ` Rich Felker
  0 siblings, 1 reply; 3+ messages in thread
From: Denys Vlasenko @ 2016-09-18 19:44 UTC (permalink / raw)
  To: Rich Felker; +Cc: Denys Vlasenko, musl

In glibc, fflush_unlocked(NULL) works.
Before this patch, musl was segfaulting.

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
CC: musl <musl@lists.openwall.com>
---
 src/stdio/fflush.c | 35 +++++++++++++++++++++++++----------
 1 file changed, 25 insertions(+), 10 deletions(-)

diff --git a/src/stdio/fflush.c b/src/stdio/fflush.c
index 3f462c8..06d7a56 100644
--- a/src/stdio/fflush.c
+++ b/src/stdio/fflush.c
@@ -2,20 +2,35 @@
 
 static int __fflush_unlocked(FILE *f)
 {
-	/* If writing, flush output */
-	if (f->wpos > f->wbase) {
-		f->write(f, 0, 0);
-		if (!f->wpos) return EOF;
+	int r;
+
+	if (f) {
+		/* If writing, flush output */
+		if (f->wpos > f->wbase) {
+			f->write(f, 0, 0);
+			if (!f->wpos) return EOF;
+		}
+
+		/* If reading, sync position, per POSIX */
+		if (f->rpos < f->rend) f->seek(f, f->rpos-f->rend, SEEK_CUR);
+
+		/* Clear read and write modes */
+		f->wpos = f->wbase = f->wend = 0;
+		f->rpos = f->rend = 0;
+
+		return 0;
 	}
 
-	/* If reading, sync position, per POSIX */
-	if (f->rpos < f->rend) f->seek(f, f->rpos-f->rend, SEEK_CUR);
+	/* fflush_unlocked(NULL) is supported by glibc, mimic that */
 
-	/* Clear read and write modes */
-	f->wpos = f->wbase = f->wend = 0;
-	f->rpos = f->rend = 0;
+	r = __stdout_used ? __fflush_unlocked(__stdout_used) : 0;
 
-	return 0;
+	for (f=*__ofl_lock(); f; f=f->next) {
+		if (f->wpos > f->wbase) r |= __fflush_unlocked(f);
+	}
+	__ofl_unlock();
+
+	return r;
 }
 
 /* stdout.c will override this if linked */
-- 
2.9.2



^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-09-24 23:49 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-09-18 19:44 [PATCH] make fflush_unlocked(NULL) work Denys Vlasenko
2016-09-18 20:36 ` Rich Felker
2016-09-24 23:49   ` Denys Vlasenko

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).