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:
authorJeff Johnston <jjohnstn@redhat.com>2002-04-02 02:29:40 +0400
committerJeff Johnston <jjohnstn@redhat.com>2002-04-02 02:29:40 +0400
commit54a7c6d2beffa00ab22e8bdf93da74989fd0d49d (patch)
tree9e498ba048a05e01300328f823e98151eb139cc1 /newlib/libc/stdlib
parent3b71b99abdf0b735866dd5cd620fb8d9368e1aba (diff)
2002-04-01 Till Straumann <strauman@SLAC.Stanford.EDU>
* libc/stdlib/getenv_r.c (_findenv_r): Add missing ENV_UNLOCK.
Diffstat (limited to 'newlib/libc/stdlib')
-rw-r--r--newlib/libc/stdlib/getenv_r.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/newlib/libc/stdlib/getenv_r.c b/newlib/libc/stdlib/getenv_r.c
index 4d567c718..2cc48cfd7 100644
--- a/newlib/libc/stdlib/getenv_r.c
+++ b/newlib/libc/stdlib/getenv_r.c
@@ -94,7 +94,10 @@ _DEFUN (_findenv_r, (reent_ptr, name, offset),
/* In some embedded systems, this does not get set. This protects
newlib from dereferencing a bad pointer. */
if (!*p_environ)
- return NULL;
+ {
+ ENV_UNLOCK;
+ return NULL;
+ }
c = name;
len = 0;