handling nil case for refprefix
This commit is contained in:
@@ -945,9 +945,11 @@ size_t ZSTD_CCtx_refPrefix_advanced(
|
|||||||
{
|
{
|
||||||
RETURN_ERROR_IF(cctx->streamStage != zcss_init, stage_wrong);
|
RETURN_ERROR_IF(cctx->streamStage != zcss_init, stage_wrong);
|
||||||
ZSTD_clearAllDicts(cctx);
|
ZSTD_clearAllDicts(cctx);
|
||||||
cctx->prefixDict.dict = prefix;
|
if (prefix != NULL && prefixSize > 0) {
|
||||||
cctx->prefixDict.dictSize = prefixSize;
|
cctx->prefixDict.dict = prefix;
|
||||||
cctx->prefixDict.dictContentType = dictContentType;
|
cctx->prefixDict.dictSize = prefixSize;
|
||||||
|
cctx->prefixDict.dictContentType = dictContentType;
|
||||||
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user