[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
No known key found for this signature in database
GPG key ID: B39240EE84BEAE8B

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. */