mirror of
https://github.com/reactos/reactos.git
synced 2025-01-04 21:38:43 +00:00
[SHELL32] Mark an unexpected failure as unexpected
This commit is contained in:
parent
2318bda651
commit
f9d3c2c608
1 changed files with 1 additions and 1 deletions
|
@ -1190,7 +1190,7 @@ CFileDefExt::Initialize(PCIDLIST_ABSOLUTE pidlFolder, IDataObject *pDataObj, HKE
|
|||
format.tymed = TYMED_HGLOBAL;
|
||||
|
||||
hr = pDataObj->GetData(&format, &stgm);
|
||||
if (FAILED(hr))
|
||||
if (FAILED_UNEXPECTEDLY(hr))
|
||||
return hr;
|
||||
|
||||
if (!DragQueryFileW((HDROP)stgm.hGlobal, 0, m_wszPath, _countof(m_wszPath)))
|
||||
|
|
Loading…
Reference in a new issue