Skip to content

Commit eb2ceb4

Browse files
authored
Merge pull request #4249 from facebook/zds_nonnull
minor: assert that state is not null
2 parents 053e4be + e8de808 commit eb2ceb4

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

lib/decompress/zstd_decompress.c

+1
Original file line numberDiff line numberDiff line change
@@ -2096,6 +2096,7 @@ size_t ZSTD_decompressStream(ZSTD_DStream* zds, ZSTD_outBuffer* output, ZSTD_inB
20962096
U32 someMoreWork = 1;
20972097

20982098
DEBUGLOG(5, "ZSTD_decompressStream");
2099+
assert(zds != NULL);
20992100
RETURN_ERROR_IF(
21002101
input->pos > input->size,
21012102
srcSize_wrong,

0 commit comments

Comments
 (0)