rpcrt4: Don't align the buffer pointer in ComplexStructMemorySize for alignment formats.

This commit is contained in:
Alexandre Julliard 2009-01-26 15:12:07 +01:00
parent 3939cb5c82
commit 9876c5433f
1 changed files with 0 additions and 2 deletions

View File

@ -3148,11 +3148,9 @@ static unsigned long ComplexStructMemorySize(PMIDL_STUB_MESSAGE pStubMsg,
}
case RPC_FC_ALIGNM4:
ALIGN_LENGTH(size, 4);
ALIGN_POINTER(pStubMsg->Buffer, 4);
break;
case RPC_FC_ALIGNM8:
ALIGN_LENGTH(size, 8);
ALIGN_POINTER(pStubMsg->Buffer, 8);
break;
case RPC_FC_STRUCTPAD1:
case RPC_FC_STRUCTPAD2: