Fixed backtrack issue on 16bit code.

This commit is contained in:
Eric Pouech 1999-02-20 16:40:47 +00:00 committed by Alexandre Julliard
parent 2820592e1f
commit 761e314c06
1 changed files with 1 additions and 1 deletions

View File

@ -212,7 +212,7 @@ DEBUG_SetFrame(int newframe)
curr_frame = 0;
}
if( frames[curr_frame].frame.list.sourcefile != NULL )
if( frames && frames[curr_frame].frame.list.sourcefile != NULL )
{
DEBUG_List(&frames[curr_frame].frame.list, NULL, 0);
}