about summary refs log tree commit diff
path: root/stdio-common/vfprintf.c
diff options
context:
space:
mode:
authorThomas Bushnell, BSG <thomas@gnu.org>1996-09-12 22:22:29 +0000
committerThomas Bushnell, BSG <thomas@gnu.org>1996-09-12 22:22:29 +0000
commitae2ddc98c17c17897398c8d960d984789ecab0d9 (patch)
tree0cc8f727ebaac4445fb9420043c1fcea61c82a24 /stdio-common/vfprintf.c
parentf33b97f91391579f28d9346967d713345790eaeb (diff)
downloadglibc-ae2ddc98c17c17897398c8d960d984789ecab0d9.tar.gz
glibc-ae2ddc98c17c17897398c8d960d984789ecab0d9.tar.xz
glibc-ae2ddc98c17c17897398c8d960d984789ecab0d9.zip
*** empty log message ***
	(vfprintf): Only call __libc_cleanup_region_end if USE_IN_LIBIO,
	thus matching the sense of the tests around
	__libc_cleanup_region_start at the front of the function.
	* stdio-common/vfscanf.c: Include <libc-lock.h>.
	(UNLOCK_STREAM) [! USE_IN_LIBIO]: Call
	__libc_cleanup_region_end, not __libc_cleanup_region_start.
Diffstat (limited to 'stdio-common/vfprintf.c')
-rw-r--r--stdio-common/vfprintf.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/stdio-common/vfprintf.c b/stdio-common/vfprintf.c
index d27bbdbf57..dc2983d264 100644
--- a/stdio-common/vfprintf.c
+++ b/stdio-common/vfprintf.c
@@ -1311,7 +1311,10 @@ do_positional:
 
 all_done:
   /* Unlock the stream.  */
+#ifdef USE_IN_LIBIO
+  /* (stdio has no locking yet.) */
   __libc_cleanup_region_end (1);
+#endif
 
   return done;
 }