summaryrefslogtreecommitdiffstats
path: root/ossfuzz/compress_frame_fuzzer.c
diff options
context:
space:
mode:
Diffstat (limited to 'ossfuzz/compress_frame_fuzzer.c')
-rw-r--r--ossfuzz/compress_frame_fuzzer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ossfuzz/compress_frame_fuzzer.c b/ossfuzz/compress_frame_fuzzer.c
index bb14fc2..568ae14 100644
--- a/ossfuzz/compress_frame_fuzzer.c
+++ b/ossfuzz/compress_frame_fuzzer.c
@@ -28,8 +28,8 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
char* const dst = (char*)malloc(dstCapacity);
char* const rt = (char*)malloc(size);
- FUZZ_ASSERT(dst);
- FUZZ_ASSERT(rt);
+ FUZZ_ASSERT(dst!=NULL);
+ FUZZ_ASSERT(rt!=NULL);
/* If compression succeeds it must round trip correctly. */
size_t const dstSize =