Fixed variable leak

This commit is contained in:
deajan 2018-07-09 15:01:45 +02:00
parent c80871cb63
commit 6222fd6872
1 changed files with 3 additions and 1 deletions

View File

@ -8,7 +8,7 @@
#### OFUNCTIONS FULL SUBSET #### #### OFUNCTIONS FULL SUBSET ####
#### OFUNCTIONS MINI SUBSET #### #### OFUNCTIONS MINI SUBSET ####
_OFUNCTIONS_VERSION=2.3.0-dev _OFUNCTIONS_VERSION=2.3.0-dev
_OFUNCTIONS_BUILD=2018070901 _OFUNCTIONS_BUILD=2018070902
#### _OFUNCTIONS_BOOTSTRAP SUBSET #### #### _OFUNCTIONS_BOOTSTRAP SUBSET ####
_OFUNCTIONS_BOOTSTRAP=true _OFUNCTIONS_BOOTSTRAP=true
#### _OFUNCTIONS_BOOTSTRAP SUBSET END #### #### _OFUNCTIONS_BOOTSTRAP SUBSET END ####
@ -1359,6 +1359,8 @@ function CheckRFC822 {
function UrlEncode { function UrlEncode {
local length="${#1}" local length="${#1}"
local i
local LANG=C local LANG=C
for i in $(seq 0 $((length-1))); do for i in $(seq 0 $((length-1))); do
local c="${1:i:1}" local c="${1:i:1}"