mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 04:26:32 +00:00
[RDBSS] Fix broken cast when comparing DFS magic values
CID 1419139
This commit is contained in:
parent
f9b26bc0f2
commit
78e5caaec2
1 changed files with 1 additions and 1 deletions
|
@ -4946,7 +4946,7 @@ RxCreateFromNetRoot(
|
|||
if (Context->pFobx != NULL)
|
||||
{
|
||||
/* If so, reflect this in the FOBX */
|
||||
if (NodeType(FileObject->FsContext2) == DFS_OPEN_CONTEXT)
|
||||
if (FileObject->FsContext2 == UIntToPtr(DFS_OPEN_CONTEXT))
|
||||
{
|
||||
SetFlag(Context->pFobx->Flags, FOBX_FLAG_DFS_OPEN);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue