Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2012-03-26 14:43:06 +0400
committerCorinna Vinschen <corinna@vinschen.de>2012-03-26 14:43:06 +0400
commit33c789303fcd9f8a6631218e4241947b6f5d7579 (patch)
tree74315f67a6b85a8ad31e47165c452e2c6d1a8d6d /newlib/libc/stdio
parentb54d64de05084f38af3e475c70d50aa3966cbc2e (diff)
* libc/stdio/findfp.c (__sinit): Set __sdidinit last.
Diffstat (limited to 'newlib/libc/stdio')
-rw-r--r--newlib/libc/stdio/findfp.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/newlib/libc/stdio/findfp.c b/newlib/libc/stdio/findfp.c
index 570fd457e..d81241434 100644
--- a/newlib/libc/stdio/findfp.c
+++ b/newlib/libc/stdio/findfp.c
@@ -192,7 +192,6 @@ _DEFUN(__sinit, (s),
/* make sure we clean up on exit */
s->__cleanup = _cleanup_r; /* conservative */
- s->__sdidinit = 1;
s->__sglue._next = NULL;
#ifndef _REENT_SMALL
@@ -224,6 +223,8 @@ _DEFUN(__sinit, (s),
when the underlying fd 2 is write-only. */
std (s->_stderr, __SRW | __SNBF, 2, s);
+ s->__sdidinit = 1;
+
__sinit_lock_release ();
}