mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-27 03:43:36 +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:
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user