From: Ulrich Drepper Date: Fri, 15 May 1998 17:08:11 +0000 (+0000) Subject: Update. X-Git-Tag: cvs/libc-ud-980518~8 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=bd687f7ab43028d3722984a6bcf48115bb82d9bb;p=thirdparty%2Fglibc.git Update. * iconv/gconv_db.c (derivation_lookup): Use __tfind correctly. --- diff --git a/ChangeLog b/ChangeLog index f8afb393a3d..e264b026e5f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 1998-05-15 Ulrich Drepper + * iconv/gconv_db.c (derivation_lookup): Use __tfind correctly. + * sysdeps/generic/setenv.c (setenv): Remove optimization for overwriting existing values if it fits. diff --git a/iconv/gconv_db.c b/iconv/gconv_db.c index 503c5d0c864..b98cc8f4f2e 100644 --- a/iconv/gconv_db.c +++ b/iconv/gconv_db.c @@ -102,15 +102,15 @@ derivation_lookup (const char *fromset, const char *toset, struct gconv_step **handle, size_t *nsteps) { struct known_derivation key = { fromset, toset, NULL, 0 }; - struct known_derivation *result; + struct known_derivation **result; result = __tfind (&key, &known_derivations, derivation_compare); if (result == NULL) return GCONV_NOCONV; - *handle = result->steps; - *nsteps = result->nsteps; + *handle = (*result)->steps; + *nsteps = (*result)->nsteps; /* Please note that we return GCONV_OK even if the last search for this transformation was unsuccessful. */