| zstd_decompress_block.c | 74 RETURN_ERROR_IF(bpPtr->blockType == bt_reserved, corruption_detected, ""); 139 RETURN_ERROR_IF(srcSize < MIN_CBLOCK_SIZE, corruption_detected, ""); 153 RETURN_ERROR_IF(srcSize < 5, corruption_detected, "srcSize >= MIN_CBLOCK_SIZE == 2; here we need up to 5 for case 3"); 186 RETURN_ERROR_IF(litSize > blockSizeMax, corruption_detected, ""); 191 RETURN_ERROR_IF(litCSize + lhSize > srcSize, corruption_detected, ""); 241 RETURN_ERROR_IF(HUF_isError(hufSuccess), corruption_detected, ""); local 266 RETURN_ERROR_IF(srcSize<3, corruption_detected, "srcSize >= MIN_CBLOCK_SIZE == 2; here we need lhSize = 3"); 272 RETURN_ERROR_IF(litSize > blockSizeMax, corruption_detected, ""); 276 RETURN_ERROR_IF(litSize+lhSize > srcSize, corruption_detected, ""); 310 RETURN_ERROR_IF(srcSize<3, corruption_detected, "srcSize >= MIN_CBLOCK_SIZE == 2; here we need lhSize+1 = 3") 683 RETURN_ERROR_IF(FSE_isError(headerSize), corruption_detected, ""); local 745 RETURN_ERROR_IF(ZSTD_isError(llhSize), corruption_detected, "ZSTD_buildSeqTable failed"); local 757 RETURN_ERROR_IF(ZSTD_isError(ofhSize), corruption_detected, "ZSTD_buildSeqTable failed"); local 769 RETURN_ERROR_IF(ZSTD_isError(mlhSize), corruption_detected, "ZSTD_buildSeqTable failed"); local 1054 RETURN_ERROR_IF(UNLIKELY(sequence.offset > (size_t)(oLitEnd - virtualStart)), corruption_detected, ""); local 1147 RETURN_ERROR_IF(UNLIKELY(sequence.offset > (size_t)(oLitEnd - virtualStart)), corruption_detected, ""); local [all...] |