[uClibc-cvs] uClibc/libc/stdio old_vfprintf.c,1.5,1.6
Manuel Novoa III
mjn3 at uclibc.org
Mon Jul 14 21:16:58 UTC 2003
Update of /var/cvs/uClibc/libc/stdio
In directory winder:/tmp/cvs-serv17705
Modified Files:
old_vfprintf.c
Log Message:
Yikes! This was doing another lock instead of unlocking the stream.
Index: old_vfprintf.c
===================================================================
RCS file: /var/cvs/uClibc/libc/stdio/old_vfprintf.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- old_vfprintf.c 7 Jul 2002 20:13:41 -0000 1.5
+++ old_vfprintf.c 14 Jul 2003 21:16:54 -0000 1.6
@@ -490,7 +490,7 @@
i = (__FERROR(op)) ? -1 : cnt;
- __STDIO_THREADLOCK(op);
+ __STDIO_THREADUNLOCK(op);
return i;
}
More information about the uClibc-cvs
mailing list