wbemprox: Fix string length in get_value_bstr().

This commit is contained in:
Paul Gofman 2022-10-20 19:14:29 -05:00 committed by Alexandre Julliard
parent 329664392e
commit 5f42c9e39d

View file

@ -178,7 +178,7 @@ BSTR get_value_bstr( const struct table *table, UINT row, UINT column )
if (!val) return NULL;
len = lstrlenW( (const WCHAR *)(INT_PTR)val ) + 2;
if (!(ret = SysAllocStringLen( NULL, len ))) return NULL;
swprintf( ret, len, L"\"%s\"", (const WCHAR *)(INT_PTR)val );
swprintf( ret, len + 1, L"\"%s\"", (const WCHAR *)(INT_PTR)val );
return ret;
case CIM_SINT16: