bug fix: did not check externals right
This commit is contained in:
parent
5838d4899d
commit
5ca1be74b8
|
@ -266,9 +266,10 @@ EM_getinstr(p)
|
|||
check(p->em_cst >= 0);
|
||||
break;
|
||||
case PAR_G:
|
||||
if (p->em_argtype == cst_ptyp) {
|
||||
check(p->em_cst >= 0);
|
||||
if (p->em_argtype != cst_ptyp) {
|
||||
break;
|
||||
}
|
||||
check(p->em_cst >= 0);
|
||||
/* Fall through */
|
||||
case PAR_F:
|
||||
/* ??? not in original em_decode or em_encode */
|
||||
|
|
Loading…
Reference in a new issue