Commit fec220d3 authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

Don't include the terminating nul in the length in

MsiSummaryInfoGetPropertyW.
parent 114d3996
......@@ -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
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment