diff options
author | Ulrich Drepper <drepper@redhat.com> | 2007-10-13 17:06:29 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2007-10-13 17:06:29 +0000 |
commit | 656f02ce5b080fa4dfdd7c6f0ee52aa30b94c880 (patch) | |
tree | 57d4697dc8782e8e4970ca4127d078f9f798e766 /intl | |
parent | 7e39d8025d5c9d02c61f1506642c7dd91a1e461a (diff) | |
download | glibc-656f02ce5b080fa4dfdd7c6f0ee52aa30b94c880.zip glibc-656f02ce5b080fa4dfdd7c6f0ee52aa30b94c880.tar.gz glibc-656f02ce5b080fa4dfdd7c6f0ee52aa30b94c880.tar.bz2 |
* intl/dcigettext.c (_nl_find_msg): Unlock the conversions_lock
when we cannot recode the message.
Diffstat (limited to 'intl')
-rw-r--r-- | intl/dcigettext.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/intl/dcigettext.c b/intl/dcigettext.c index 55dcaab..a2cd801 100644 --- a/intl/dcigettext.c +++ b/intl/dcigettext.c @@ -974,6 +974,7 @@ _nl_find_msg (domain_file, domainbinding, msgid, convert, lengthp) translation at all. */ if (__builtin_expect (r != __GCONV_NULCONV, 1)) { + __libc_rwlock_unlock (domain->conversions_lock); free ((char *) encoding); return NULL; } |