[FLTMGR]: Remove a MSVC warning: FltObjectDereference, whose prototype is publicly defined in fltkernel.h, doesn't return any value.

svn path=/trunk/; revision=71864
This commit is contained in:
Hermès Bélusca-Maïto 2016-07-08 17:44:59 +00:00
parent 442231df6f
commit b5bf3c7a1f

View file

@ -36,11 +36,11 @@ FltObjectReference(_Inout_ PFLT_OBJECT Object)
return STATUS_SUCCESS;
}
BOOLEAN
VOID
NTAPI
FltObjectDereference(_Inout_ PFLT_OBJECT Object)
{
return FltpExReleaseRundownProtection(&Object->RundownRef);
FltpExReleaseRundownProtection(&Object->RundownRef);
}