From: Nick Mathewson Date: Sun, 27 Sep 2009 16:01:29 +0000 (-0400) Subject: Make a NULL check in test_dir.c non-redundant. X-Git-Tag: tor-0.2.2.4-alpha~27 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a4d6d83051afe7a3018882e989b0efaa9b1c7908;p=thirdparty%2Ftor.git Make a NULL check in test_dir.c non-redundant. Should quiet a coverity warning. --- diff --git a/src/test/test_dir.c b/src/test/test_dir.c index c9b0a86bcf..1ad4100798 100644 --- a/src/test/test_dir.c +++ b/src/test/test_dir.c @@ -76,6 +76,8 @@ test_dir_formats(void) pk2 = pk_generate(1); pk3 = pk_generate(2); + test_assert(pk1 && pk2 && pk3); + get_platform_str(platform, sizeof(platform)); r1 = tor_malloc_zero(sizeof(routerinfo_t)); r1->address = tor_strdup("18.244.0.1");