Update.
authorUlrich Drepper <drepper@redhat.com>
Fri, 15 May 1998 17:08:11 +0000 (17:08 +0000)
committerUlrich Drepper <drepper@redhat.com>
Fri, 15 May 1998 17:08:11 +0000 (17:08 +0000)
* iconv/gconv_db.c (derivation_lookup): Use __tfind correctly.

ChangeLog
iconv/gconv_db.c

index f8afb39..e264b02 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
 
index 503c5d0..b98cc8f 100644 (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.  */