https://git.reactos.org/?p=reactos.git;a=commitdiff;h=4768a371f4f8cb4387a90…
commit 4768a371f4f8cb4387a902037e42d387086f334a
Author: Pierre Schweitzer <pierre(a)reactos.org>
AuthorDate: Sat Nov 18 17:51:08 2017 +0100
[NTOSKRNL]
When CcPurgeCacheSection() succeed, make it return TRUE so that callers don't
believe it always fail
---
ntoskrnl/cc/fs.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ntoskrnl/cc/fs.c b/ntoskrnl/cc/fs.c
index 4ecd55352a..6f6b5568fe 100644
--- a/ntoskrnl/cc/fs.c
+++ b/ntoskrnl/cc/fs.c
@@ -213,7 +213,7 @@ CcPurgeCacheSection (
CcRosInternalFreeVacb(Vacb);
}
- return FALSE;
+ return TRUE;
}