mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 22:27:38 +03:00
util.array: Small logic fix for array:filter()
This commit is contained in:
parent
04d29dacbc
commit
73a4154d03
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@ function array_base.filter(outa, ina, func)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
if inplace and write < start_length then
|
if inplace and write <= start_length then
|
||||||
for i=write,start_length do
|
for i=write,start_length do
|
||||||
outa[i] = nil;
|
outa[i] = nil;
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue