Commit 957281a8 authored by Andrew Nguyen's avatar Andrew Nguyen Committed by Alexandre Julliard

dxdiagn: Initialize a structure size member before calling EnumDisplayDevicesW.

parent 50833f07
...@@ -498,6 +498,7 @@ static HRESULT DXDiag_InitDXDiagDisplayContainer(IDxDiagContainer* pSubCont) ...@@ -498,6 +498,7 @@ static HRESULT DXDiag_InitDXDiagDisplayContainer(IDxDiagContainer* pSubCont)
hr = IDxDiagContainerImpl_AddChildContainer( pSubCont, szAdapterID, pDisplayAdapterSubCont ); hr = IDxDiagContainerImpl_AddChildContainer( pSubCont, szAdapterID, pDisplayAdapterSubCont );
if (FAILED( hr )) return hr; if (FAILED( hr )) return hr;
disp_dev.cb = sizeof(disp_dev);
if (EnumDisplayDevicesW( NULL, 0, &disp_dev, 0 )) if (EnumDisplayDevicesW( NULL, 0, &disp_dev, 0 ))
{ {
add_prop_str( pDisplayAdapterSubCont, szDeviceName, disp_dev.DeviceName ); add_prop_str( pDisplayAdapterSubCont, szDeviceName, disp_dev.DeviceName );
......
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