mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-05-31 00:30:57 +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
|
static void
|
||||||
dump_frame (progs_t *pr, prstack_t *frame)
|
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) {
|
if (!f) {
|
||||||
Sys_Printf ("<NO FUNCTION>\n");
|
Sys_Printf ("<NO FUNCTION>\n");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue