Fix off-by-one error in `string:split` implementation.

This commit is contained in:
Diego Martínez 2015-01-04 20:10:25 -03:00 committed by kwolekr
parent 3bdf3df223
commit 00bca11f59
1 changed files with 1 additions and 1 deletions

View File

@ -178,7 +178,7 @@ function string.split(str, delim, include_empty, max_splits, sep_is_pattern)
table_insert(items, s)
end
pos = npe + 1
until (max_splits == 0) or (pos > len)
until (max_splits == 0) or (pos > (len + 1))
return items
end