Commit 761e314c authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

Fixed backtrack issue on 16bit code.

parent 2820592e
...@@ -212,7 +212,7 @@ DEBUG_SetFrame(int newframe) ...@@ -212,7 +212,7 @@ DEBUG_SetFrame(int newframe)
curr_frame = 0; 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); DEBUG_List(&frames[curr_frame].frame.list, NULL, 0);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment