mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-02 15:17:35 +00:00
Fixed initialization of INSTANCEDATA in InitTask().
This commit is contained in:
parent
1c1e125349
commit
f2f0927eb3
1 changed files with 1 additions and 1 deletions
|
@ -709,7 +709,7 @@ void WINAPI InitTask16( CONTEXT86 *context )
|
|||
|
||||
/* Initialize the INSTANCEDATA structure */
|
||||
pinstance = (INSTANCEDATA *)PTR_SEG_OFF_TO_LIN(CURRENT_DS, 0);
|
||||
pinstance->stackmin = OFFSETOF( pTask->teb->cur_stack );
|
||||
pinstance->stackmin = OFFSETOF( pTask->teb->cur_stack ) + sizeof( STACK16FRAME );
|
||||
pinstance->stackbottom = pinstance->stackmin; /* yup, that's right. Confused me too. */
|
||||
pinstance->stacktop = ( pinstance->stackmin > BX_reg(context)?
|
||||
pinstance->stackmin - BX_reg(context) : 0 ) + 150;
|
||||
|
|
Loading…
Reference in a new issue