Bläddra i källkod

Fix a crash if you enable FascistFirewall but not FirewallPorts.
Reported by Frediano Ziglio.


svn:r6746

Roger Dingledine 19 år sedan
förälder
incheckning
51454157a0
1 ändrade filer med 1 tillägg och 1 borttagningar
  1. 1 1
      src/or/config.c

+ 1 - 1
src/or/config.c

@@ -2216,7 +2216,7 @@ options_validate(or_options_t *old_options, or_options_t *options,
     return -1;
 
   if (options->FascistFirewall && !options->ReachableAddresses) {
-    if (smartlist_len(options->FirewallPorts)) {
+    if (options->FirewallPorts && smartlist_len(options->FirewallPorts)) {
       /* We already have firewall ports set, so migrate them to
        * ReachableAddresses, which will set ReachableORAddresses and
        * ReachableDirAddresses if they aren't set explicitly. */