Browse Source

Fix a coverity NULL-pointer deref warning in the DNS tests.

This is CID 1340251
Nick Mathewson 8 years ago
parent
commit
428e2b7636
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/test/test_dns.c

+ 2 - 1
src/test/test_dns.c

@@ -738,7 +738,8 @@ NS(test_main)(void *arg)
   NS_UNMOCK(launch_resolve);
   tor_free(on_circ);
   tor_free(TO_CONN(exitconn)->address);
-  tor_free(cache_entry->pending_connections);
+  if (cache_entry)
+    tor_free(cache_entry->pending_connections);
   tor_free(cache_entry);
   tor_free(exitconn);
   return;