File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -178,12 +178,12 @@ FsRtlNotifyCleanup(IN PNOTIFY_SYNC NotifySync,
178
178
NotifyChange -> Flags |= CLEANUP_IN_PROCESS ;
179
179
180
180
/* If there are pending IRPs, complete them using the STATUS_NOTIFY_CLEANUP status */
181
- if (!IsListEmpty (NotifyChange -> NotifyIrps ))
181
+ if (!IsListEmpty (& NotifyChange -> NotifyIrps ))
182
182
{
183
183
FsRtlNotifyCompleteIrpList (NotifyChange , STATUS_NOTIFY_CLEANUP );
184
184
}
185
185
/* Remove from the list */
186
- RemoveEntryList (NotifyChange -> NotifyList );
186
+ RemoveEntryList (& NotifyChange -> NotifyList );
187
187
188
188
/* Downcrease reference number and if 0 is reached, it's time to do complete cleanup */
189
189
if (!InterlockedDecrement ((PLONG )& (NotifyChange -> ReferenceCount )))
Original file line number Diff line number Diff line change @@ -75,8 +75,8 @@ typedef struct _NOTIFY_CHANGE
75
75
PCHECK_FOR_TRAVERSE_ACCESS TraverseCallback ;
76
76
PSECURITY_SUBJECT_CONTEXT SubjectContext ;
77
77
PSTRING FullDirectoryName ;
78
- PLIST_ENTRY NotifyList ;
79
- PLIST_ENTRY NotifyIrps ;
78
+ LIST_ENTRY NotifyList ;
79
+ LIST_ENTRY NotifyIrps ;
80
80
PFILTER_REPORT_CHANGE FilterCallback ;
81
81
USHORT Flags ;
82
82
UCHAR CharacterSize ;
You can’t perform that action at this time.
0 commit comments