From b14f2ce219cd4880857ac2d43248ed912b5e2d22 Mon Sep 17 00:00:00 2001 From: colin-foster-in-advantage Date: Tue, 6 Dec 2016 09:36:17 -0800 Subject: [PATCH] Fixed typo in NAL parser (#311) Added a missing "()" in the NAL parser script --- LuaScripts/NALParser.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LuaScripts/NALParser.lua b/LuaScripts/NALParser.lua index c622215d..e0e2e181 100644 --- a/LuaScripts/NALParser.lua +++ b/LuaScripts/NALParser.lua @@ -20,7 +20,7 @@ function p_h264raw.dissector(buf, pkt, root) local i = 0 local data_start = -1 - while i < buf:len do + while i < buf:len() do -- Make sure we have a potential start sequence and type if buf:len() - i < 5 then -- We need more data