From cecb282ed331701073fd76196ddb734b0f14ec47 Mon Sep 17 00:00:00 2001 From: Manuel Novoa III Date: Mon, 1 Apr 2002 15:16:54 +0000 Subject: Forget to initialize thread locks for fake files. Thanks Erik. --- libc/stdio/scanf.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'libc/stdio/scanf.c') diff --git a/libc/stdio/scanf.c b/libc/stdio/scanf.c index 07e74d9ae..a5e0d412c 100644 --- a/libc/stdio/scanf.c +++ b/libc/stdio/scanf.c @@ -127,6 +127,10 @@ int vsscanf(__const char *sp, __const char *fmt, va_list ap) string->bufstart = string->bufrpos = (unsigned char *) ((void *) sp); string->bufgetc = (char *) ((unsigned) -1); +#ifdef __STDIO_THREADSAFE + __stdio_init_mutex(&string->lock); +#endif + return vfscanf(string, fmt, ap); } #else /* __STDIO_BUFFERS */ -- cgit v1.2.3