mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-03 12:23:25 +00:00
[RTL]
Fix c/p mistake in PropertyLengthAsVariant svn path=/trunk/; revision=56796
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user