summaryrefslogtreecommitdiffstats
path: root/epan/dissectors/file-blf.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dissectors/file-blf.c')
-rw-r--r--epan/dissectors/file-blf.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/epan/dissectors/file-blf.c b/epan/dissectors/file-blf.c
index 200d5de..d527ea3 100644
--- a/epan/dissectors/file-blf.c
+++ b/epan/dissectors/file-blf.c
@@ -22,6 +22,7 @@
#include <epan/packet.h>
#include <epan/prefs.h>
+
#include <wiretap/blf.h>
static int proto_blf = -1;
@@ -395,6 +396,7 @@ dissect_blf_api_version(proto_tree *tree, int hf, tvbuff_t *tvb, gint offset, gi
}
static int
+// NOLINTNEXTLINE(misc-no-recursion)
dissect_blf_lobj(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *tree, gint offset_orig) {
proto_item *ti_root = NULL;
proto_item *ti = NULL;
@@ -722,6 +724,7 @@ dissect_blf_lobj(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *tree, gint o
}
static int
+// NOLINTNEXTLINE(misc-no-recursion)
dissect_blf_next_object(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, gint offset) {
gint offset_orig = offset;
@@ -729,7 +732,9 @@ dissect_blf_next_object(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, gin
if (tvb_memeql(tvb, offset, blf_lobj_magic, MAGIC_NUMBER_SIZE) != 0) {
offset += 1;
} else {
+ increment_dissection_depth(pinfo);
int bytes_parsed = dissect_blf_lobj(tvb, pinfo, tree, offset);
+ decrement_dissection_depth(pinfo);
if (bytes_parsed <= 0) {
return 0;
} else {