sys: rename retain/release to reference/dereference

This commit is contained in:
Bill Zissimopoulos
2016-01-18 12:38:37 -08:00
parent b17d70e462
commit c488949022
7 changed files with 48 additions and 48 deletions

View File

@ -59,7 +59,7 @@ static NTSTATUS FspFsvolClose(
FSP_FSCTL_TRANSACT_REQ *Request;
/* dereference the FileNode (and delete if no more references) */
FspFileNodeRelease(FileNode);
FspFileNodeDereference(FileNode);
/* create the user-mode file system request; MustSucceed because IRP_MJ_CLOSE cannot fail */
FspIopCreateRequestMustSucceed(0, FileNameRequired ? &FileNode->FileName : 0, 0, &Request);