mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 20:50:41 +00:00
[WIN32SS] Fix crash if releasing a PDEVOBJ before switching to graphic mode
- do not try to remove ppdev from gppdevList if gppdevList is NULL - do not check (and maybe change) gpmdev, as it should be done only in MDEVOBJ_vDestroy
This commit is contained in:
parent
0b0e73d66e
commit
cb504d7b0c
1 changed files with 1 additions and 5 deletions
|
@ -139,7 +139,7 @@ PDEVOBJ_vRelease(
|
|||
{
|
||||
gppdevList = ppdev->ppdevNext;
|
||||
}
|
||||
else
|
||||
else if (gppdevList)
|
||||
{
|
||||
PPDEVOBJ ppdevCurrent = gppdevList;
|
||||
BOOL found = FALSE;
|
||||
|
@ -154,10 +154,6 @@ PDEVOBJ_vRelease(
|
|||
ppdevCurrent->ppdevNext = ppdev->ppdevNext;
|
||||
}
|
||||
|
||||
/* Is this the primary one ? */
|
||||
if (ppdev == gpmdev->ppdevGlobal)
|
||||
gpmdev->ppdevGlobal = NULL;
|
||||
|
||||
/* Unload display driver */
|
||||
EngUnloadImage(ppdev->pldev);
|
||||
|
||||
|
|
Loading…
Reference in a new issue