Преглед изворни кода

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


svn:r6746

Roger Dingledine пре 19 година
родитељ
комит
51454157a0
1 измењених фајлова са 1 додато и 1 уклоњено
  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. */