* iconv/gconv_db.c (derivation_lookup): Use __tfind correctly.
This commit is contained in:
Ulrich Drepper 1998-05-15 17:08:11 +00:00
parent cb37d8429a
commit bd687f7ab4
2 changed files with 5 additions and 3 deletions

View File

@ -1,5 +1,7 @@
1998-05-15 Ulrich Drepper <drepper@cygnus.com>
* iconv/gconv_db.c (derivation_lookup): Use __tfind correctly.
* sysdeps/generic/setenv.c (setenv): Remove optimization for
overwriting existing values if it fits.

View File

@ -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. */