Browse Source

Make a NULL check in test_dir.c non-redundant.

Should quiet a coverity warning.
Nick Mathewson 16 years ago
parent
commit
a4d6d83051
1 changed files with 2 additions and 0 deletions
  1. 2 0
      src/test/test_dir.c

+ 2 - 0
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");