diff options
Diffstat (limited to 'src/stdio/open_wmemstream.c')
-rw-r--r-- | src/stdio/open_wmemstream.c | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/src/stdio/open_wmemstream.c b/src/stdio/open_wmemstream.c index a830b143..35370309 100644 --- a/src/stdio/open_wmemstream.c +++ b/src/stdio/open_wmemstream.c @@ -1,4 +1,8 @@ #include "stdio_impl.h" +#include <wchar.h> +#include <errno.h> +#include <limits.h> +#include <string.h> struct cookie { wchar_t **bufp; @@ -75,12 +79,13 @@ FILE *open_wmemstream(wchar_t **bufp, size_t *sizep) f->seek = wms_seek; f->close = wms_close; - if (!libc.threaded) { - f->lock = -1; - f->next = libc.ofl_head; - if (libc.ofl_head) libc.ofl_head->prev = f; - libc.ofl_head = f; - } + if (!libc.threaded) f->lock = -1; + + OFLLOCK(); + f->next = libc.ofl_head; + if (libc.ofl_head) libc.ofl_head->prev = f; + libc.ofl_head = f; + OFLUNLOCK(); return f; } |