Procházet zdrojové kódy

Resolve a warning under gcc 4.4 trunk.

svn:r17357
Nick Mathewson před 15 roky
rodič
revize
07a08d933d
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      src/common/container.c

+ 1 - 1
src/common/container.c

@@ -494,7 +494,7 @@ void *
 smartlist_bsearch(smartlist_t *sl, const void *key,
                   int (*compare)(const void *key, const void **member))
 {
-  int found, idx;
+  int found=0, idx;
   idx = smartlist_bsearch_idx(sl, key, compare, &found);
   return found ? smartlist_get(sl, idx) : NULL;
 }