mirror of
https://github.com/lubosz/overte.git
synced 2025-04-07 09:22:42 +02:00
Dissectors: Limit message number & position values
This commit is contained in:
parent
0cfc090655
commit
ecbce8201b
1 changed files with 1 additions and 1 deletions
|
@ -307,7 +307,7 @@ function p_hfudt.dissector(buf, pinfo, tree)
|
|||
|
||||
-- check if we have part of a message that we need to re-assemble
|
||||
-- before it can be dissected
|
||||
if message_bit == 1 and message_position ~= 0 then
|
||||
if message_bit == 1 and message_position ~= 0 and message_number < 50 and message_part_number < 10 then
|
||||
if fragments[message_number] == nil then
|
||||
fragments[message_number] = {}
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue