util.array: Small logic fix for array:filter()

This commit is contained in:
Matthew Wild 2009-10-05 18:39:28 +01:00
parent 04d29dacbc
commit 73a4154d03

View file

@ -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