mirror of
https://github.com/reactos/reactos.git
synced 2025-01-04 21:38:43 +00:00
[RTL]
Fix c/p mistake in PropertyLengthAsVariant svn path=/trunk/; revision=56796
This commit is contained in:
parent
07f3561057
commit
edc7d34422
1 changed files with 3 additions and 3 deletions
|
@ -67,7 +67,7 @@ PropertyLengthAsVariant(IN PSERIALIZEDPROPERTYVALUE pProp,
|
|||
IN USHORT CodePage,
|
||||
IN BYTE bReserved)
|
||||
{
|
||||
BOOLEAN Success = FALSE;
|
||||
ULONG Length = 0;
|
||||
PVOID BaseAddress = NULL;
|
||||
ULONG (*ProcedureAddress)(PSERIALIZEDPROPERTYVALUE, ULONG, USHORT, BYTE);
|
||||
|
||||
|
@ -77,7 +77,7 @@ PropertyLengthAsVariant(IN PSERIALIZEDPROPERTYVALUE pProp,
|
|||
ProcedureAddress = LoadOle32Export(&BaseAddress,
|
||||
"StgPropertyLengthAsVariant");
|
||||
|
||||
Success = ProcedureAddress(pProp, cbProp, CodePage, bReserved);
|
||||
Length = ProcedureAddress(pProp, cbProp, CodePage, bReserved);
|
||||
}
|
||||
_SEH2_FINALLY
|
||||
{
|
||||
|
@ -88,7 +88,7 @@ PropertyLengthAsVariant(IN PSERIALIZEDPROPERTYVALUE pProp,
|
|||
}
|
||||
_SEH2_END;
|
||||
|
||||
return Success;
|
||||
return Length;
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue