NULL function crash fix
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1178 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
655fe901be
commit
a23de78d86
4 changed files with 4 additions and 4 deletions
|
@ -493,7 +493,7 @@ reeval:
|
|||
if ((fnum & ~0xff000000)==0)
|
||||
{
|
||||
pr_trace++;
|
||||
printf("NULL function from qc (%s).\n", pr_xfunction->s_name);
|
||||
printf("NULL function from qc (%s).\n", progfuncs->stringtable + pr_xfunction->s_name);
|
||||
#ifndef DEBUGABLE
|
||||
goto cont;
|
||||
#endif
|
||||
|
|
|
@ -493,7 +493,7 @@ reeval:
|
|||
if ((fnum & ~0xff000000)==0)
|
||||
{
|
||||
pr_trace++;
|
||||
printf("NULL function from qc (%s).\n", pr_xfunction->s_name);
|
||||
printf("NULL function from qc (%s).\n", progfuncs->stringtable + pr_xfunction->s_name);
|
||||
#ifndef DEBUGABLE
|
||||
goto cont;
|
||||
#endif
|
||||
|
|
|
@ -493,7 +493,7 @@ reeval:
|
|||
if ((fnum & ~0xff000000)==0)
|
||||
{
|
||||
pr_trace++;
|
||||
printf("NULL function from qc (%s).\n", pr_xfunction->s_name);
|
||||
printf("NULL function from qc (%s).\n", progfuncs->stringtable + pr_xfunction->s_name);
|
||||
#ifndef DEBUGABLE
|
||||
goto cont;
|
||||
#endif
|
||||
|
|
|
@ -493,7 +493,7 @@ reeval:
|
|||
if ((fnum & ~0xff000000)==0)
|
||||
{
|
||||
pr_trace++;
|
||||
printf("NULL function from qc (%s).\n", pr_xfunction->s_name);
|
||||
printf("NULL function from qc (%s).\n", progfuncs->stringtable + pr_xfunction->s_name);
|
||||
#ifndef DEBUGABLE
|
||||
goto cont;
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue