mirror of
https://github.com/reactos/reactos.git
synced 2025-05-15 07:17:23 +00:00
[RDBSS]
Don't attempt to dereference NULL-ptr if CCB isn't set. Fixes crash in RxFsdCommonDispatch() under rare circumstances. CORE-11327 svn path=/trunk/; revision=75474
This commit is contained in:
parent
62806dc561
commit
eae32333ca
1 changed files with 1 additions and 1 deletions
|
@ -5984,7 +5984,7 @@ RxFsdCommonDispatch(
|
|||
Fobx = StackFileObject->FsContext2;
|
||||
|
||||
if (BooleanFlagOn(Fcb->FcbState, FCB_STATE_ORPHANED) ||
|
||||
BooleanFlagOn(Fobx->pSrvOpen->Flags, SRVOPEN_FLAG_ORPHANED))
|
||||
((Fobx != NULL) && BooleanFlagOn(Fobx->pSrvOpen->Flags, SRVOPEN_FLAG_ORPHANED)))
|
||||
{
|
||||
if (Closing)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue