Fixed typo in NAL parser (#311)

Added a missing "()" in the NAL parser script
This commit is contained in:
colin-foster-in-advantage 2016-12-06 09:36:17 -08:00 committed by Cameron Gutman
parent d31be3d64e
commit b14f2ce219

View File

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