mirror of
https://github.com/reactos/reactos.git
synced 2024-12-31 19:42:51 +00:00
[BROWSEUI] Stop the address edit box trying to parse a null pidl
This commit is contained in:
parent
53badbd2f7
commit
246e6a0de9
1 changed files with 6 additions and 0 deletions
|
@ -390,6 +390,12 @@ HRESULT STDMETHODCALLTYPE CAddressEditBox::Invoke(DISPID dispIdMember, REFIID ri
|
|||
if (FAILED_UNEXPECTEDLY(hr))
|
||||
return hr;
|
||||
|
||||
if (!absolutePIDL)
|
||||
{
|
||||
ERR("Got no PIDL, investigate me!\n");
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
/* Fill the combobox */
|
||||
PopulateComboBox(absolutePIDL);
|
||||
|
||||
|
|
Loading…
Reference in a new issue