* iconv/gconv_db.c (__gconv_find_transform): If conversion is
known to not exist don't try to load shared objects.
Patch by Petr Vandrovec Ing. VTEI <VANDROVE@vc.cvut.cz>.
1999-04-15 Ulrich Drepper <drepper@cygnus.com>
+ * iconv/gconv_db.c (__gconv_find_transform): If conversion is
+ known to not exist don't try to load shared objects.
+ Patch by Petr Vandrovec Ing. VTEI <VANDROVE@vc.cvut.cz>.
+
* nscd/cache.c (prune_cache): The table might not be unused. In
this case do nothing.
size_t cnt = *nsteps;
struct gconv_step *steps = *handle;
- do
+ while (cnt > 0)
if (steps[--cnt].counter++ == 0)
{
steps[cnt].shlib_handle =
break;
}
}
- while (cnt > 0);
}
#endif