[BROWSEUI] Stop the address edit box trying to parse a null pidl

This commit is contained in:
Mark Jansen
2020-09-06 14:32:59 +02:00
parent 53badbd2f7
commit 246e6a0de9

View File

@@ -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);