Remove autogenerated test file

This commit is contained in:
shakeelrao
2019-02-28 01:29:04 -08:00
parent 97d3d28dab
commit c9d674b60d
2 changed files with 2 additions and 2 deletions
+2 -1
View File
@@ -530,10 +530,11 @@ size_t ZSTD_decompressBound(const void* src, size_t srcSize)
{ size_t bound;
size_t frameBound;
size_t frameSrcSize;
unsigned long long const ret = ZSTD_getFrameContentSize(src, srcSize);
if (ret == ZSTD_CONTENTSIZE_ERROR) return ret;
size_t const frameSrcSize = ZSTD_findFrameCompressedSize_internal(src, srcSize, &bound);
frameSrcSize = ZSTD_findFrameCompressedSize_internal(src, srcSize, &bound);
if (ZSTD_isError(frameSrcSize)) {
return ZSTD_CONTENTSIZE_ERROR;
}
File diff suppressed because one or more lines are too long