Use RTL::LinkedList::ListEmpty() routine to check if list is empty after removal
All checks were successful
Builds / ExectOS (i686, release) (push) Successful in 31s
Builds / ExectOS (amd64, release) (push) Successful in 32s
Builds / ExectOS (i686, debug) (push) Successful in 45s
Builds / ExectOS (amd64, debug) (push) Successful in 46s

This commit is contained in:
2026-02-11 19:15:57 +01:00
parent 4b5188260f
commit 2af94a1c3b

View File

@@ -175,5 +175,5 @@ RTL::LinkedList::RemoveEntryList(IN PLIST_ENTRY Entry)
Entry->Blink->Flink = Entry->Flink;
/* Return TRUE if list is empty, or FALSE otherwise */
return (BOOLEAN)(Entry->Blink == Entry->Flink);
return ListEmpty(Entry);
}