ole32: Remove dead code in StorageImpl_LoadFileHeader.
This commit is contained in:
parent
27ae234b04
commit
23bb94c005
|
@ -3139,16 +3139,8 @@ static HRESULT StorageImpl_LoadFileHeader(
|
|||
/*
|
||||
* Make the bitwise arithmetic to get the size of the blocks in bytes.
|
||||
*/
|
||||
if ((1 << 2) == 4)
|
||||
{
|
||||
This->bigBlockSize = 0x000000001 << (DWORD)This->bigBlockSizeBits;
|
||||
This->smallBlockSize = 0x000000001 << (DWORD)This->smallBlockSizeBits;
|
||||
}
|
||||
else
|
||||
{
|
||||
This->bigBlockSize = 0x000000001 >> (DWORD)This->bigBlockSizeBits;
|
||||
This->smallBlockSize = 0x000000001 >> (DWORD)This->smallBlockSizeBits;
|
||||
}
|
||||
This->bigBlockSize = 0x000000001 << (DWORD)This->bigBlockSizeBits;
|
||||
This->smallBlockSize = 0x000000001 << (DWORD)This->smallBlockSizeBits;
|
||||
|
||||
/*
|
||||
* Right now, the code is making some assumptions about the size of the
|
||||
|
|
Loading…
Reference in New Issue