Commit a75ff33f authored by Joe Taber's avatar Joe Taber Committed by Jean-Baptiste Kempf

vlm: Error loading /requests/vlm.xml

Variable `loop` was uninitialized and resulted in an error when being
concatenated. Initialize the variable to blank: `local loop = ""`.

Close #6882
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent fc5156cc
......@@ -52,7 +52,8 @@ local function print_table(name,t)
end
local function print_media(m)
local name = m.name
local type_, enabled, loop, output
local type_, enabled, output
local loop = ""
local inputs = {}
local options = {}
local instances = {}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment