Don't include the terminating nul in the length in

MsiSummaryInfoGetPropertyW.
oldstable
Mike McCormack 2005-09-07 09:24:14 +00:00 committed by Alexandre Julliard
parent 114d399666
commit fec220d321
1 changed files with 1 additions and 0 deletions

View File

@ -561,6 +561,7 @@ static UINT get_prop( MSIHANDLE handle, UINT uiProperty, UINT *puiDataType,
{
len = MultiByteToWideChar( CP_ACP, 0, prop->u.pszVal, -1,
str->str.w, *pcchValueBuf );
len--;
}
else
{