mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-22 02:11:19 +00:00
fix another bug caused by the function table changes
This commit is contained in:
parent
e27b2a9e54
commit
3e92ac51fd
1 changed files with 1 additions and 1 deletions
|
@ -698,7 +698,7 @@ PR_PrintStatement (progs_t *pr, dstatement_t *s, int contents)
|
|||
static void
|
||||
dump_frame (progs_t *pr, prstack_t *frame)
|
||||
{
|
||||
dfunction_t *f = frame->f->descriptor;
|
||||
dfunction_t *f = frame->f ? frame->f->descriptor : 0;
|
||||
|
||||
if (!f) {
|
||||
Sys_Printf ("<NO FUNCTION>\n");
|
||||
|
|
Loading…
Reference in a new issue