From: George Kadianakis Date: Wed, 26 Oct 2011 15:13:56 +0000 (+0200) Subject: Fix a NULL pointer dereference in parse_server_transport_line(). X-Git-Tag: tor-0.2.3.6-alpha~10 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9d53c0091169e9b68d91c023124e1fed31909ffa;p=thirdparty%2Ftor.git Fix a NULL pointer dereference in parse_server_transport_line(). --- diff --git a/src/or/config.c b/src/or/config.c index ec9d84b374..3080da0485 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -4985,8 +4985,10 @@ parse_server_transport_line(const char *line, int validate_only) done: SMARTLIST_FOREACH(items, char*, s, tor_free(s)); smartlist_free(items); - SMARTLIST_FOREACH(transport_list, char*, s, tor_free(s)); - smartlist_free(transport_list); + if (transport_list) { + SMARTLIST_FOREACH(transport_list, char*, s, tor_free(s)); + smartlist_free(transport_list); + } return r; }