From c5774a3458ab660e9f75526b3cd8e67da520e0ae Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Mon, 17 Dec 2018 01:22:53 +0100 Subject: bc: move fflush to the _actual_ execution loop Signed-off-by: Denys Vlasenko --- miscutils/bc.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'miscutils/bc.c') diff --git a/miscutils/bc.c b/miscutils/bc.c index 24d1ebba6..c92f6f813 100644 --- a/miscutils/bc.c +++ b/miscutils/bc.c @@ -6875,6 +6875,8 @@ static BC_STATUS zbc_program_exec(void) RETURN_STATUS(s); } + fflush_and_check(); + // If the stack has changed, pointers may be invalid. ip = bc_vec_top(&G.prog.stack); func = bc_program_func(ip->func); @@ -6920,7 +6922,6 @@ static BC_STATUS zbc_vm_process(const char *text) bc_program_reset(); break; } - fflush_and_check(); } dbg_lex_done("%s:%d done", __func__, __LINE__); -- cgit v1.2.3