cabinet: Mark some fall-throughs in switch statements.

oldstable
Andrew Talbot 2011-09-24 16:28:21 +01:00 committed by Alexandre Julliard
parent 5f9e03d118
commit 73e82bacc3
2 changed files with 5 additions and 0 deletions

View File

@ -466,10 +466,13 @@ static cab_ULONG fci_get_checksum( const void *pv, UINT cb, cab_ULONG seed )
switch (cb % 4) {
case 3:
ul |= (((ULONG)(*pb++)) << 16);
/* fall through */
case 2:
ul |= (((ULONG)(*pb++)) << 8);
/* fall through */
case 1:
ul |= *pb;
/* fall through */
default:
break;
}

View File

@ -360,7 +360,9 @@ static cab_ULONG checksum(const cab_UBYTE *data, cab_UWORD bytes, cab_ULONG csum
switch (bytes & 3) {
case 3: ul |= *data++ << 16;
/* fall through */
case 2: ul |= *data++ << 8;
/* fall through */
case 1: ul |= *data;
}
csum ^= ul;