mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 06:43:01 +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 (Context->pFobx != NULL)
|
||||||
{
|
{
|
||||||
/* If so, reflect this in the FOBX */
|
/* 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);
|
SetFlag(Context->pFobx->Flags, FOBX_FLAG_DFS_OPEN);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue