Commit a4fddf5f authored by Henri Verbeet's avatar Henri Verbeet Committed by Alexandre Julliard

mmdevapi: Include space for the terminating zero in info_device_ps_GetValue().

parent d23938de
......@@ -1246,11 +1246,12 @@ static HRESULT WINAPI info_device_ps_GetValue(IPropertyStore *iface,
if (IsEqualPropertyKey(*key, DEVPKEY_Device_Driver))
{
INT size = (lstrlenW(drvs.module_name) + 1) * sizeof(WCHAR);
pv->vt = VT_LPWSTR;
pv->u.pwszVal = CoTaskMemAlloc(lstrlenW(drvs.module_name) * sizeof(WCHAR));
pv->u.pwszVal = CoTaskMemAlloc(size);
if (!pv->u.pwszVal)
return E_OUTOFMEMORY;
lstrcpyW(pv->u.pwszVal, drvs.module_name);
memcpy(pv->u.pwszVal, drvs.module_name, size);
return S_OK;
}
......
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