mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-10 05:30:45 -08:00
(ccl_driver) <CCL_End>: Decrement stack_idx only when it is greater
than 0.
This commit is contained in:
parent
a8f573f3a7
commit
d3a478e2ab
1 changed files with 2 additions and 1 deletions
|
|
@ -1026,8 +1026,9 @@ ccl_driver (ccl, source, destination, src_bytes, dst_bytes, consumed)
|
|||
break;
|
||||
|
||||
case CCL_End: /* 0000000000000000000000XXXXX */
|
||||
if (stack_idx-- > 0)
|
||||
if (stack_idx > 0)
|
||||
{
|
||||
stack_idx--;
|
||||
ccl_prog = ccl_prog_stack_struct[stack_idx].ccl_prog;
|
||||
ic = ccl_prog_stack_struct[stack_idx].ic;
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue