mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +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
|
||||
|
||||
if inplace and write < start_length then
|
||||
if inplace and write <= start_length then
|
||||
for i=write,start_length do
|
||||
outa[i] = nil;
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue