Merge pull request #696 from joscollin/wip-lib-legacy-fallthrough-warn
lib/legacy: warning: this statement may fall throughdev
commit
bd1964a988
|
@ -816,13 +816,13 @@ MEM_STATIC size_t BIT_initDStream(BIT_DStream_t* bitD, const void* srcBuffer, si
|
||||||
bitD->bitContainer = *(const BYTE*)(bitD->start);
|
bitD->bitContainer = *(const BYTE*)(bitD->start);
|
||||||
switch(srcSize)
|
switch(srcSize)
|
||||||
{
|
{
|
||||||
case 7: bitD->bitContainer += (size_t)(((const BYTE*)(bitD->start))[6]) << (sizeof(size_t)*8 - 16);
|
case 7: bitD->bitContainer += (size_t)(((const BYTE*)(bitD->start))[6]) << (sizeof(size_t)*8 - 16);/* fall-through */
|
||||||
case 6: bitD->bitContainer += (size_t)(((const BYTE*)(bitD->start))[5]) << (sizeof(size_t)*8 - 24);
|
case 6: bitD->bitContainer += (size_t)(((const BYTE*)(bitD->start))[5]) << (sizeof(size_t)*8 - 24);/* fall-through */
|
||||||
case 5: bitD->bitContainer += (size_t)(((const BYTE*)(bitD->start))[4]) << (sizeof(size_t)*8 - 32);
|
case 5: bitD->bitContainer += (size_t)(((const BYTE*)(bitD->start))[4]) << (sizeof(size_t)*8 - 32);/* fall-through */
|
||||||
case 4: bitD->bitContainer += (size_t)(((const BYTE*)(bitD->start))[3]) << 24;
|
case 4: bitD->bitContainer += (size_t)(((const BYTE*)(bitD->start))[3]) << 24; /* fall-through */
|
||||||
case 3: bitD->bitContainer += (size_t)(((const BYTE*)(bitD->start))[2]) << 16;
|
case 3: bitD->bitContainer += (size_t)(((const BYTE*)(bitD->start))[2]) << 16; /* fall-through */
|
||||||
case 2: bitD->bitContainer += (size_t)(((const BYTE*)(bitD->start))[1]) << 8;
|
case 2: bitD->bitContainer += (size_t)(((const BYTE*)(bitD->start))[1]) << 8; /* fall-through */
|
||||||
default:;
|
default: break;
|
||||||
}
|
}
|
||||||
contain32 = ((const BYTE*)srcBuffer)[srcSize-1];
|
contain32 = ((const BYTE*)srcBuffer)[srcSize-1];
|
||||||
if (contain32 == 0) return ERROR(GENERIC); /* endMark not present */
|
if (contain32 == 0) return ERROR(GENERIC); /* endMark not present */
|
||||||
|
@ -3665,7 +3665,7 @@ static size_t ZBUFF_decompressContinue(ZBUFF_DCtx* zbc, void* dst, size_t* maxDs
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
zbc->stage = ZBUFFds_read;
|
zbc->stage = ZBUFFds_read;
|
||||||
|
/* fall-through */
|
||||||
case ZBUFFds_read:
|
case ZBUFFds_read:
|
||||||
{
|
{
|
||||||
size_t neededInSize = ZSTD_nextSrcSizeToDecompress(zbc->zc);
|
size_t neededInSize = ZSTD_nextSrcSizeToDecompress(zbc->zc);
|
||||||
|
@ -3691,7 +3691,7 @@ static size_t ZBUFF_decompressContinue(ZBUFF_DCtx* zbc, void* dst, size_t* maxDs
|
||||||
if (ip==iend) { notDone = 0; break; } /* no more input */
|
if (ip==iend) { notDone = 0; break; } /* no more input */
|
||||||
zbc->stage = ZBUFFds_load;
|
zbc->stage = ZBUFFds_load;
|
||||||
}
|
}
|
||||||
|
/* fall-through */
|
||||||
case ZBUFFds_load:
|
case ZBUFFds_load:
|
||||||
{
|
{
|
||||||
size_t neededInSize = ZSTD_nextSrcSizeToDecompress(zbc->zc);
|
size_t neededInSize = ZSTD_nextSrcSizeToDecompress(zbc->zc);
|
||||||
|
@ -3711,9 +3711,10 @@ static size_t ZBUFF_decompressContinue(ZBUFF_DCtx* zbc, void* dst, size_t* maxDs
|
||||||
if (!decodedSize) { zbc->stage = ZBUFFds_read; break; } /* this was just a header */
|
if (!decodedSize) { zbc->stage = ZBUFFds_read; break; } /* this was just a header */
|
||||||
zbc->outEnd = zbc->outStart + decodedSize;
|
zbc->outEnd = zbc->outStart + decodedSize;
|
||||||
zbc->stage = ZBUFFds_flush;
|
zbc->stage = ZBUFFds_flush;
|
||||||
// break; /* ZBUFFds_flush follows */
|
/* ZBUFFds_flush follows */
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
/* fall-through */
|
||||||
case ZBUFFds_flush:
|
case ZBUFFds_flush:
|
||||||
{
|
{
|
||||||
size_t toFlushSize = zbc->outEnd - zbc->outStart;
|
size_t toFlushSize = zbc->outEnd - zbc->outStart;
|
||||||
|
|
|
@ -818,13 +818,13 @@ MEM_STATIC size_t BITv05_initDStream(BITv05_DStream_t* bitD, const void* srcBuff
|
||||||
bitD->bitContainer = *(const BYTE*)(bitD->start);
|
bitD->bitContainer = *(const BYTE*)(bitD->start);
|
||||||
switch(srcSize)
|
switch(srcSize)
|
||||||
{
|
{
|
||||||
case 7: bitD->bitContainer += (size_t)(((const BYTE*)(bitD->start))[6]) << (sizeof(size_t)*8 - 16);
|
case 7: bitD->bitContainer += (size_t)(((const BYTE*)(bitD->start))[6]) << (sizeof(size_t)*8 - 16);/* fall-through */
|
||||||
case 6: bitD->bitContainer += (size_t)(((const BYTE*)(bitD->start))[5]) << (sizeof(size_t)*8 - 24);
|
case 6: bitD->bitContainer += (size_t)(((const BYTE*)(bitD->start))[5]) << (sizeof(size_t)*8 - 24);/* fall-through */
|
||||||
case 5: bitD->bitContainer += (size_t)(((const BYTE*)(bitD->start))[4]) << (sizeof(size_t)*8 - 32);
|
case 5: bitD->bitContainer += (size_t)(((const BYTE*)(bitD->start))[4]) << (sizeof(size_t)*8 - 32);/* fall-through */
|
||||||
case 4: bitD->bitContainer += (size_t)(((const BYTE*)(bitD->start))[3]) << 24;
|
case 4: bitD->bitContainer += (size_t)(((const BYTE*)(bitD->start))[3]) << 24; /* fall-through */
|
||||||
case 3: bitD->bitContainer += (size_t)(((const BYTE*)(bitD->start))[2]) << 16;
|
case 3: bitD->bitContainer += (size_t)(((const BYTE*)(bitD->start))[2]) << 16; /* fall-through */
|
||||||
case 2: bitD->bitContainer += (size_t)(((const BYTE*)(bitD->start))[1]) << 8;
|
case 2: bitD->bitContainer += (size_t)(((const BYTE*)(bitD->start))[1]) << 8; /* fall-through */
|
||||||
default:;
|
default: break;
|
||||||
}
|
}
|
||||||
contain32 = ((const BYTE*)srcBuffer)[srcSize-1];
|
contain32 = ((const BYTE*)srcBuffer)[srcSize-1];
|
||||||
if (contain32 == 0) return ERROR(GENERIC); /* endMark not present */
|
if (contain32 == 0) return ERROR(GENERIC); /* endMark not present */
|
||||||
|
@ -3955,7 +3955,7 @@ size_t ZBUFFv05_decompressContinue(ZBUFFv05_DCtx* zbc, void* dst, size_t* maxDst
|
||||||
zbc->stage = ZBUFFv05ds_decodeHeader;
|
zbc->stage = ZBUFFv05ds_decodeHeader;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
/* fall-through */
|
||||||
case ZBUFFv05ds_loadHeader:
|
case ZBUFFv05ds_loadHeader:
|
||||||
/* complete header from src */
|
/* complete header from src */
|
||||||
{
|
{
|
||||||
|
@ -3973,7 +3973,7 @@ size_t ZBUFFv05_decompressContinue(ZBUFFv05_DCtx* zbc, void* dst, size_t* maxDst
|
||||||
}
|
}
|
||||||
// zbc->stage = ZBUFFv05ds_decodeHeader; break; /* useless : stage follows */
|
// zbc->stage = ZBUFFv05ds_decodeHeader; break; /* useless : stage follows */
|
||||||
}
|
}
|
||||||
|
/* fall-through */
|
||||||
case ZBUFFv05ds_decodeHeader:
|
case ZBUFFv05ds_decodeHeader:
|
||||||
/* apply header to create / resize buffers */
|
/* apply header to create / resize buffers */
|
||||||
{
|
{
|
||||||
|
@ -4000,7 +4000,7 @@ size_t ZBUFFv05_decompressContinue(ZBUFFv05_DCtx* zbc, void* dst, size_t* maxDst
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
zbc->stage = ZBUFFv05ds_read;
|
zbc->stage = ZBUFFv05ds_read;
|
||||||
|
/* fall-through */
|
||||||
case ZBUFFv05ds_read:
|
case ZBUFFv05ds_read:
|
||||||
{
|
{
|
||||||
size_t neededInSize = ZSTDv05_nextSrcSizeToDecompress(zbc->zc);
|
size_t neededInSize = ZSTDv05_nextSrcSizeToDecompress(zbc->zc);
|
||||||
|
@ -4024,7 +4024,7 @@ size_t ZBUFFv05_decompressContinue(ZBUFFv05_DCtx* zbc, void* dst, size_t* maxDst
|
||||||
if (ip==iend) { notDone = 0; break; } /* no more input */
|
if (ip==iend) { notDone = 0; break; } /* no more input */
|
||||||
zbc->stage = ZBUFFv05ds_load;
|
zbc->stage = ZBUFFv05ds_load;
|
||||||
}
|
}
|
||||||
|
/* fall-through */
|
||||||
case ZBUFFv05ds_load:
|
case ZBUFFv05ds_load:
|
||||||
{
|
{
|
||||||
size_t neededInSize = ZSTDv05_nextSrcSizeToDecompress(zbc->zc);
|
size_t neededInSize = ZSTDv05_nextSrcSizeToDecompress(zbc->zc);
|
||||||
|
@ -4045,7 +4045,9 @@ size_t ZBUFFv05_decompressContinue(ZBUFFv05_DCtx* zbc, void* dst, size_t* maxDst
|
||||||
zbc->outEnd = zbc->outStart + decodedSize;
|
zbc->outEnd = zbc->outStart + decodedSize;
|
||||||
zbc->stage = ZBUFFv05ds_flush;
|
zbc->stage = ZBUFFv05ds_flush;
|
||||||
// break; /* ZBUFFv05ds_flush follows */
|
// break; /* ZBUFFv05ds_flush follows */
|
||||||
} }
|
}
|
||||||
|
}
|
||||||
|
/* fall-through */
|
||||||
case ZBUFFv05ds_flush:
|
case ZBUFFv05ds_flush:
|
||||||
{
|
{
|
||||||
size_t toFlushSize = zbc->outEnd - zbc->outStart;
|
size_t toFlushSize = zbc->outEnd - zbc->outStart;
|
||||||
|
|
|
@ -910,13 +910,13 @@ MEM_STATIC size_t BITv06_initDStream(BITv06_DStream_t* bitD, const void* srcBuff
|
||||||
bitD->bitContainer = *(const BYTE*)(bitD->start);
|
bitD->bitContainer = *(const BYTE*)(bitD->start);
|
||||||
switch(srcSize)
|
switch(srcSize)
|
||||||
{
|
{
|
||||||
case 7: bitD->bitContainer += (size_t)(((const BYTE*)(srcBuffer))[6]) << (sizeof(bitD->bitContainer)*8 - 16);
|
case 7: bitD->bitContainer += (size_t)(((const BYTE*)(srcBuffer))[6]) << (sizeof(bitD->bitContainer)*8 - 16);/* fall-through */
|
||||||
case 6: bitD->bitContainer += (size_t)(((const BYTE*)(srcBuffer))[5]) << (sizeof(bitD->bitContainer)*8 - 24);
|
case 6: bitD->bitContainer += (size_t)(((const BYTE*)(srcBuffer))[5]) << (sizeof(bitD->bitContainer)*8 - 24);/* fall-through */
|
||||||
case 5: bitD->bitContainer += (size_t)(((const BYTE*)(srcBuffer))[4]) << (sizeof(bitD->bitContainer)*8 - 32);
|
case 5: bitD->bitContainer += (size_t)(((const BYTE*)(srcBuffer))[4]) << (sizeof(bitD->bitContainer)*8 - 32);/* fall-through */
|
||||||
case 4: bitD->bitContainer += (size_t)(((const BYTE*)(srcBuffer))[3]) << 24;
|
case 4: bitD->bitContainer += (size_t)(((const BYTE*)(srcBuffer))[3]) << 24; /* fall-through */
|
||||||
case 3: bitD->bitContainer += (size_t)(((const BYTE*)(srcBuffer))[2]) << 16;
|
case 3: bitD->bitContainer += (size_t)(((const BYTE*)(srcBuffer))[2]) << 16; /* fall-through */
|
||||||
case 2: bitD->bitContainer += (size_t)(((const BYTE*)(srcBuffer))[1]) << 8;
|
case 2: bitD->bitContainer += (size_t)(((const BYTE*)(srcBuffer))[1]) << 8; /* fall-through */
|
||||||
default:;
|
default: break;
|
||||||
}
|
}
|
||||||
{ BYTE const lastByte = ((const BYTE*)srcBuffer)[srcSize-1];
|
{ BYTE const lastByte = ((const BYTE*)srcBuffer)[srcSize-1];
|
||||||
if (lastByte == 0) return ERROR(GENERIC); /* endMark not present */
|
if (lastByte == 0) return ERROR(GENERIC); /* endMark not present */
|
||||||
|
@ -3789,7 +3789,7 @@ size_t ZSTDv06_decompressContinue(ZSTDv06_DCtx* dctx, void* dst, size_t dstCapac
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
dctx->expected = 0; /* not necessary to copy more */
|
dctx->expected = 0; /* not necessary to copy more */
|
||||||
|
/* fall-through */
|
||||||
case ZSTDds_decodeFrameHeader:
|
case ZSTDds_decodeFrameHeader:
|
||||||
{ size_t result;
|
{ size_t result;
|
||||||
memcpy(dctx->headerBuffer + ZSTDv06_frameHeaderSize_min, src, dctx->expected);
|
memcpy(dctx->headerBuffer + ZSTDv06_frameHeaderSize_min, src, dctx->expected);
|
||||||
|
@ -4116,7 +4116,7 @@ size_t ZBUFFv06_decompressContinue(ZBUFFv06_DCtx* zbd,
|
||||||
if (zbd->outBuff == NULL) return ERROR(memory_allocation);
|
if (zbd->outBuff == NULL) return ERROR(memory_allocation);
|
||||||
} } }
|
} } }
|
||||||
zbd->stage = ZBUFFds_read;
|
zbd->stage = ZBUFFds_read;
|
||||||
|
/* fall-through */
|
||||||
case ZBUFFds_read:
|
case ZBUFFds_read:
|
||||||
{ size_t const neededInSize = ZSTDv06_nextSrcSizeToDecompress(zbd->zd);
|
{ size_t const neededInSize = ZSTDv06_nextSrcSizeToDecompress(zbd->zd);
|
||||||
if (neededInSize==0) { /* end of frame */
|
if (neededInSize==0) { /* end of frame */
|
||||||
|
@ -4138,7 +4138,7 @@ size_t ZBUFFv06_decompressContinue(ZBUFFv06_DCtx* zbd,
|
||||||
if (ip==iend) { notDone = 0; break; } /* no more input */
|
if (ip==iend) { notDone = 0; break; } /* no more input */
|
||||||
zbd->stage = ZBUFFds_load;
|
zbd->stage = ZBUFFds_load;
|
||||||
}
|
}
|
||||||
|
/* fall-through */
|
||||||
case ZBUFFds_load:
|
case ZBUFFds_load:
|
||||||
{ size_t const neededInSize = ZSTDv06_nextSrcSizeToDecompress(zbd->zd);
|
{ size_t const neededInSize = ZSTDv06_nextSrcSizeToDecompress(zbd->zd);
|
||||||
size_t const toLoad = neededInSize - zbd->inPos; /* should always be <= remaining space within inBuff */
|
size_t const toLoad = neededInSize - zbd->inPos; /* should always be <= remaining space within inBuff */
|
||||||
|
@ -4159,8 +4159,9 @@ size_t ZBUFFv06_decompressContinue(ZBUFFv06_DCtx* zbd,
|
||||||
zbd->outEnd = zbd->outStart + decodedSize;
|
zbd->outEnd = zbd->outStart + decodedSize;
|
||||||
zbd->stage = ZBUFFds_flush;
|
zbd->stage = ZBUFFds_flush;
|
||||||
// break; /* ZBUFFds_flush follows */
|
// break; /* ZBUFFds_flush follows */
|
||||||
} }
|
}
|
||||||
|
}
|
||||||
|
/* fall-through */
|
||||||
case ZBUFFds_flush:
|
case ZBUFFds_flush:
|
||||||
{ size_t const toFlushSize = zbd->outEnd - zbd->outStart;
|
{ size_t const toFlushSize = zbd->outEnd - zbd->outStart;
|
||||||
size_t const flushedSize = ZBUFFv06_limitCopy(op, oend-op, zbd->outBuff + zbd->outStart, toFlushSize);
|
size_t const flushedSize = ZBUFFv06_limitCopy(op, oend-op, zbd->outBuff + zbd->outStart, toFlushSize);
|
||||||
|
|
|
@ -580,13 +580,13 @@ MEM_STATIC size_t BITv07_initDStream(BITv07_DStream_t* bitD, const void* srcBuff
|
||||||
bitD->bitContainer = *(const BYTE*)(bitD->start);
|
bitD->bitContainer = *(const BYTE*)(bitD->start);
|
||||||
switch(srcSize)
|
switch(srcSize)
|
||||||
{
|
{
|
||||||
case 7: bitD->bitContainer += (size_t)(((const BYTE*)(srcBuffer))[6]) << (sizeof(bitD->bitContainer)*8 - 16);
|
case 7: bitD->bitContainer += (size_t)(((const BYTE*)(srcBuffer))[6]) << (sizeof(bitD->bitContainer)*8 - 16);/* fall-through */
|
||||||
case 6: bitD->bitContainer += (size_t)(((const BYTE*)(srcBuffer))[5]) << (sizeof(bitD->bitContainer)*8 - 24);
|
case 6: bitD->bitContainer += (size_t)(((const BYTE*)(srcBuffer))[5]) << (sizeof(bitD->bitContainer)*8 - 24);/* fall-through */
|
||||||
case 5: bitD->bitContainer += (size_t)(((const BYTE*)(srcBuffer))[4]) << (sizeof(bitD->bitContainer)*8 - 32);
|
case 5: bitD->bitContainer += (size_t)(((const BYTE*)(srcBuffer))[4]) << (sizeof(bitD->bitContainer)*8 - 32);/* fall-through */
|
||||||
case 4: bitD->bitContainer += (size_t)(((const BYTE*)(srcBuffer))[3]) << 24;
|
case 4: bitD->bitContainer += (size_t)(((const BYTE*)(srcBuffer))[3]) << 24; /* fall-through */
|
||||||
case 3: bitD->bitContainer += (size_t)(((const BYTE*)(srcBuffer))[2]) << 16;
|
case 3: bitD->bitContainer += (size_t)(((const BYTE*)(srcBuffer))[2]) << 16; /* fall-through */
|
||||||
case 2: bitD->bitContainer += (size_t)(((const BYTE*)(srcBuffer))[1]) << 8;
|
case 2: bitD->bitContainer += (size_t)(((const BYTE*)(srcBuffer))[1]) << 8; /* fall-through */
|
||||||
default:;
|
default: break;
|
||||||
}
|
}
|
||||||
{ BYTE const lastByte = ((const BYTE*)srcBuffer)[srcSize-1];
|
{ BYTE const lastByte = ((const BYTE*)srcBuffer)[srcSize-1];
|
||||||
bitD->bitsConsumed = lastByte ? 8 - BITv07_highbit32(lastByte) : 0;
|
bitD->bitsConsumed = lastByte ? 8 - BITv07_highbit32(lastByte) : 0;
|
||||||
|
@ -4047,7 +4047,7 @@ size_t ZSTDv07_decompressContinue(ZSTDv07_DCtx* dctx, void* dst, size_t dstCapac
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
dctx->expected = 0; /* not necessary to copy more */
|
dctx->expected = 0; /* not necessary to copy more */
|
||||||
|
/* fall-through */
|
||||||
case ZSTDds_decodeFrameHeader:
|
case ZSTDds_decodeFrameHeader:
|
||||||
{ size_t result;
|
{ size_t result;
|
||||||
memcpy(dctx->headerBuffer + ZSTDv07_frameHeaderSize_min, src, dctx->expected);
|
memcpy(dctx->headerBuffer + ZSTDv07_frameHeaderSize_min, src, dctx->expected);
|
||||||
|
@ -4494,7 +4494,7 @@ size_t ZBUFFv07_decompressContinue(ZBUFFv07_DCtx* zbd,
|
||||||
} } }
|
} } }
|
||||||
zbd->stage = ZBUFFds_read;
|
zbd->stage = ZBUFFds_read;
|
||||||
/* pass-through */
|
/* pass-through */
|
||||||
|
/* fall-through */
|
||||||
case ZBUFFds_read:
|
case ZBUFFds_read:
|
||||||
{ size_t const neededInSize = ZSTDv07_nextSrcSizeToDecompress(zbd->zd);
|
{ size_t const neededInSize = ZSTDv07_nextSrcSizeToDecompress(zbd->zd);
|
||||||
if (neededInSize==0) { /* end of frame */
|
if (neededInSize==0) { /* end of frame */
|
||||||
|
@ -4517,7 +4517,7 @@ size_t ZBUFFv07_decompressContinue(ZBUFFv07_DCtx* zbd,
|
||||||
if (ip==iend) { notDone = 0; break; } /* no more input */
|
if (ip==iend) { notDone = 0; break; } /* no more input */
|
||||||
zbd->stage = ZBUFFds_load;
|
zbd->stage = ZBUFFds_load;
|
||||||
}
|
}
|
||||||
|
/* fall-through */
|
||||||
case ZBUFFds_load:
|
case ZBUFFds_load:
|
||||||
{ size_t const neededInSize = ZSTDv07_nextSrcSizeToDecompress(zbd->zd);
|
{ size_t const neededInSize = ZSTDv07_nextSrcSizeToDecompress(zbd->zd);
|
||||||
size_t const toLoad = neededInSize - zbd->inPos; /* should always be <= remaining space within inBuff */
|
size_t const toLoad = neededInSize - zbd->inPos; /* should always be <= remaining space within inBuff */
|
||||||
|
@ -4540,8 +4540,9 @@ size_t ZBUFFv07_decompressContinue(ZBUFFv07_DCtx* zbd,
|
||||||
zbd->stage = ZBUFFds_flush;
|
zbd->stage = ZBUFFds_flush;
|
||||||
/* break; */
|
/* break; */
|
||||||
/* pass-through */
|
/* pass-through */
|
||||||
} }
|
}
|
||||||
|
}
|
||||||
|
/* fall-through */
|
||||||
case ZBUFFds_flush:
|
case ZBUFFds_flush:
|
||||||
{ size_t const toFlushSize = zbd->outEnd - zbd->outStart;
|
{ size_t const toFlushSize = zbd->outEnd - zbd->outStart;
|
||||||
size_t const flushedSize = ZBUFFv07_limitCopy(op, oend-op, zbd->outBuff + zbd->outStart, toFlushSize);
|
size_t const flushedSize = ZBUFFv07_limitCopy(op, oend-op, zbd->outBuff + zbd->outStart, toFlushSize);
|
||||||
|
|
Loading…
Reference in New Issue