|
@@ -1397,7 +1397,8 @@ peek_stack:
|
|
|
/* tell verifier to check for equivalent states
|
|
|
* after every call and jump
|
|
|
*/
|
|
|
- env->explored_states[t + 1] = STATE_LIST_MARK;
|
|
|
+ if (t + 1 < insn_cnt)
|
|
|
+ env->explored_states[t + 1] = STATE_LIST_MARK;
|
|
|
} else {
|
|
|
/* conditional jump with two edges */
|
|
|
ret = push_insn(t, t + 1, FALLTHROUGH, env);
|