[SHELL32] Abort change notifications on a nullptr

CORE-15703
This commit is contained in:
Mark Jansen
2019-02-16 18:35:08 +01:00
parent 95ed44ef63
commit d766391231

View File

@@ -730,6 +730,12 @@ _NotificationCompletion(DWORD dwErrorCode, // completion code
return;
}
if (!item)
{
ERR("item == NULL\n");
return;
}
#endif
/* This likely means overflow, so force whole directory refresh. */