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:
Daniel Shahaf 2015-09-25 20:57:51 +00:00
parent dd12dde93a
commit 9c7a1109c8

View file

@ -262,6 +262,7 @@ _zsh_highlight_main_highlighter_highlight_string()
setopt localoptions noksharrays
local i j k style
local AA
integer c
# 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
(( j = i + start_pos - 1 ))