| commit | 761e314c06cc772cfa4449484c0f37be62309eb9 | [log] [tgz] |
|---|---|---|
| author | Eric Pouech <Eric.Pouech@wanadoo.fr> | Sat Feb 20 16:40:47 1999 +0000 |
| committer | Alexandre Julliard <julliard@winehq.org> | Sat Feb 20 16:40:47 1999 +0000 |
| tree | 5f8fafb0d7ccb4a3a51af2febbaaa8c2b6ef75c0 | |
| parent | 2820592e1f8c2c169c6317fff340002685356f1f [diff] [blame] |
Fixed backtrack issue on 16bit code.
diff --git a/debugger/stack.c b/debugger/stack.c index 574d734..dee3aac 100644 --- a/debugger/stack.c +++ b/debugger/stack.c
@@ -212,7 +212,7 @@ 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); }