]> Kevux Git Server - fll/commit
Bugfix: IKI variables are incorrectly being processed when there is a non-IKI IKI...
authorKevin Day <thekevinday@gmail.com>
Wed, 13 Jul 2022 12:01:39 +0000 (07:01 -0500)
committerKevin Day <thekevinday@gmail.com>
Wed, 13 Jul 2022 12:01:39 +0000 (07:01 -0500)
commitfeb9184911c738b66c4181f58527cbfd94cdb25c
treef6cc5082ef87fb98bfef05f05f8f3d8e12f8b223
parentab7d279309c5984462299d865a866f6cfef21aeb
Bugfix: IKI variables are incorrectly being processed when there is a non-IKI IKI-like string.

The delimits, after the first, are not being processed.

This is the result of an accidental double increment.
When checking against a possible IKI variable and it is determined that the string cannot be an IKI variable, a double increment occurs.
What is happening is that the break statement only breaks out of the immediate loop.
There is a second loop that does an increment is not being broken out of.

Utilize the separator_found boolean to determine whether or not to perform the additional break.
level_0/f_iki/c/iki.c