WARN_CREATE_GLOBAL: don't leak the arithmetic for loop's index variable.
Found by code inspection; WARN_CREATE_GLOBAL missed this.
This commit is contained in:
parent
dd12dde93a
commit
9c7a1109c8
|
@ -262,6 +262,7 @@ _zsh_highlight_main_highlighter_highlight_string()
|
||||||
setopt localoptions noksharrays
|
setopt localoptions noksharrays
|
||||||
local i j k style
|
local i j k style
|
||||||
local AA
|
local AA
|
||||||
|
integer c
|
||||||
# Starting quote is at 1, so start parsing at offset 2 in the string.
|
# Starting quote is at 1, so start parsing at offset 2 in the string.
|
||||||
for (( i = 2 ; i < end_pos - start_pos ; i += 1 )) ; do
|
for (( i = 2 ; i < end_pos - start_pos ; i += 1 )) ; do
|
||||||
(( j = i + start_pos - 1 ))
|
(( j = i + start_pos - 1 ))
|
||||||
|
|
Loading…
Reference in New Issue