mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-26 13:50:53 +00:00
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)
|
if ((fnum & ~0xff000000)==0)
|
||||||
{
|
{
|
||||||
pr_trace++;
|
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
|
#ifndef DEBUGABLE
|
||||||
goto cont;
|
goto cont;
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -493,7 +493,7 @@ reeval:
|
||||||
if ((fnum & ~0xff000000)==0)
|
if ((fnum & ~0xff000000)==0)
|
||||||
{
|
{
|
||||||
pr_trace++;
|
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
|
#ifndef DEBUGABLE
|
||||||
goto cont;
|
goto cont;
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -493,7 +493,7 @@ reeval:
|
||||||
if ((fnum & ~0xff000000)==0)
|
if ((fnum & ~0xff000000)==0)
|
||||||
{
|
{
|
||||||
pr_trace++;
|
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
|
#ifndef DEBUGABLE
|
||||||
goto cont;
|
goto cont;
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -493,7 +493,7 @@ reeval:
|
||||||
if ((fnum & ~0xff000000)==0)
|
if ((fnum & ~0xff000000)==0)
|
||||||
{
|
{
|
||||||
pr_trace++;
|
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
|
#ifndef DEBUGABLE
|
||||||
goto cont;
|
goto cont;
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue