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