Refactor expand in Lua 5.1

This commit is contained in:
kikito 2015-04-06 17:23:12 +02:00
parent 0950963cd3
commit a08ab4f93d
1 changed files with 4 additions and 9 deletions

13
md5.lua
View File

@ -68,15 +68,10 @@ else
return rslt
end
local function expand(tbl_m, tbl_n)
local big = {}
local small = {}
if(#tbl_m > #tbl_n) then
big = tbl_m
small = tbl_n
else
big = tbl_n
small = tbl_m
local function expand(t1, t2)
local big, small = t1, t2
if(#big < #small) then
big, small = small, big
end
-- expand small
for i = #small + 1, #big do