oleaut32: Indentation fix.
This commit is contained in:
parent
f30c18f3d2
commit
b2b4bb9a12
|
@ -1208,7 +1208,7 @@ deserialize_param(
|
|||
);
|
||||
return S_OK;
|
||||
}
|
||||
case VT_SAFEARRAY: {
|
||||
case VT_SAFEARRAY: {
|
||||
if (readit)
|
||||
{
|
||||
ULONG flags = MAKELONG(MSHCTX_DIFFERENTMACHINE, NDR_LOCAL_DATA_REPRESENTATION);
|
||||
|
@ -1630,7 +1630,7 @@ static ULONG WINAPI TMarshalDispatchChannel_Release(LPRPCCHANNELBUFFER iface)
|
|||
if (ref)
|
||||
return ref;
|
||||
|
||||
IRpcChannelBuffer_Release(This->pDelegateChannel);
|
||||
IRpcChannelBuffer_Release(This->pDelegateChannel);
|
||||
HeapFree(GetProcessHeap(), 0, This);
|
||||
return 0;
|
||||
}
|
||||
|
|
|
@ -3131,9 +3131,9 @@ HRESULT WINAPI VarAnd(LPVARIANT left, LPVARIANT right, LPVARIANT result)
|
|||
LOCALE_USER_DEFAULT, 0, &d)))
|
||||
hres = VariantChangeType(&varLeft,&varLeft,
|
||||
VARIANT_LOCALBOOL, VT_BOOL);
|
||||
if (SUCCEEDED(hres) && V_VT(&varLeft) != resvt)
|
||||
hres = VariantChangeType(&varLeft,&varLeft,0,resvt);
|
||||
if (FAILED(hres)) goto VarAnd_Exit;
|
||||
if (SUCCEEDED(hres) && V_VT(&varLeft) != resvt)
|
||||
hres = VariantChangeType(&varLeft,&varLeft,0,resvt);
|
||||
if (FAILED(hres)) goto VarAnd_Exit;
|
||||
}
|
||||
|
||||
if (resvt == VT_I4 && V_VT(&varRight) == VT_UI4)
|
||||
|
|
Loading…
Reference in New Issue