mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-02 13:27:35 +00:00
Make sure that we skip tasks with missing hInstance.
This commit is contained in:
parent
d23f506a94
commit
6a2a2ebc71
1 changed files with 9 additions and 2 deletions
|
@ -1566,8 +1566,15 @@ BOOL16 WINAPI TaskNext16( TASKENTRY *lpte )
|
|||
|
||||
TRACE_(toolhelp)("(%p): task=%04x\n", lpte, lpte->hNext );
|
||||
if (!lpte->hNext) return FALSE;
|
||||
pTask = (TDB *)GlobalLock16( lpte->hNext );
|
||||
if (!pTask || pTask->magic != TDB_MAGIC) return FALSE;
|
||||
|
||||
/* make sure that task and hInstance are valid (skip initial Wine task !) */
|
||||
while (1) {
|
||||
pTask = (TDB *)GlobalLock16( lpte->hNext );
|
||||
if (!pTask || pTask->magic != TDB_MAGIC) return FALSE;
|
||||
if (pTask->hInstance)
|
||||
break;
|
||||
lpte->hNext = pTask->hNext;
|
||||
}
|
||||
pInstData = (INSTANCEDATA *)PTR_SEG_OFF_TO_LIN( GlobalHandleToSel16(pTask->hInstance), 0 );
|
||||
lpte->hTask = lpte->hNext;
|
||||
lpte->hTaskParent = pTask->hParent;
|
||||
|
|
Loading…
Reference in a new issue