Преглед на файлове

Resolve a division-by-zero complaint from coverity. CID 1397272

Nick Mathewson преди 7 години
родител
ревизия
23c09b6bc2
променени са 1 файла, в които са добавени 2 реда и са изтрити 1 реда
  1. 2 1
      src/or/entrynodes.c

+ 2 - 1
src/or/entrynodes.c

@@ -638,7 +638,8 @@ choose_guard_selection(const or_options_t *options,
   */
 
   static int have_warned_extreme_threshold = 0;
-  if (n_passing_filter < extreme_threshold &&
+  if (n_guards &&
+      n_passing_filter < extreme_threshold &&
       ! have_warned_extreme_threshold) {
     have_warned_extreme_threshold = 1;
     const double exclude_frac =