Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion MiniFSWatcherDriver/mspyLib.c
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,8 @@ ULONG SpyGetEventType(
return FILE_SYSTEM_EVENT_MOVE;
}
// Get File delete information
else if (Data->Iopb->Parameters.SetFileInformation.FileInformationClass == FileDispositionInformation)
else if (Data->Iopb->Parameters.SetFileInformation.FileInformationClass == FileDispositionInformation ||
Data->Iopb->Parameters.SetFileInformation.FileInformationClass == FileDispositionInformationEx)
{
PFILE_DISPOSITION_INFORMATION info = (PFILE_DISPOSITION_INFORMATION)Data->Iopb->Parameters.SetFileInformation.InfoBuffer;
if (info != NULL && info->DeleteFile)
Expand Down