소스 검색

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

Should quiet a coverity warning.
Nick Mathewson 16 년 전
부모
커밋
a4d6d83051
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  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");