Fix bug in tor_parse_string when Address is given as a dotted quad.

Found by Ian Goldberg and Mashael AlSabah.

Bugfix on 0.2.3.0-alpha dev.
This commit is contained in:
Nick Mathewson 2010-11-01 15:52:43 -04:00
parent da0912c00c
commit c109ffaef9

View file

@ -2413,6 +2413,9 @@ resolve_my_address(int warn_severity, or_options_t *options,
}
}
}
} else {
addr = ntohl(in.s_addr); /* set addr so that addr_string is not
* illformed */
}
addr_string = tor_dup_ip(addr);