aboutsummaryrefslogtreecommitdiffstats
path: root/file.c
diff options
context:
space:
mode:
authorSake Blok <sake@euronet.nl>2022-02-27 15:35:58 +0100
committerGerald Combs <gerald@wireshark.org>2022-03-06 23:43:03 +0000
commitbe915d7374be9d64b6fd85819fcd98b300f511af (patch)
tree18a4b3cc42ee5311a55df6e16b6cf9c7c672bfac /file.c
parent1d2a8bff3c035be938bbc2c814cd1417720ff09c (diff)
epan: Allow nested dependent packets
Save all dependent frames when there are multiple levels of reassembly.
Diffstat (limited to 'file.c')
-rw-r--r--file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/file.c b/file.c
index 23c5fef297..91689cbaf8 100644
--- a/file.c
+++ b/file.c
@@ -1228,7 +1228,7 @@ add_packet_to_packet_list(frame_data *fdata, capture_file *cf,
* (potentially not displayed) frames. Find those frames and mark them
* as depended upon.
*/
- g_slist_foreach(edt->pi.dependent_frames, find_and_mark_frame_depended_upon, cf->provider.frames);
+ g_slist_foreach(edt->pi.fd->dependent_frames, find_and_mark_frame_depended_upon, cf->provider.frames);
}
} else
fdata->passed_dfilter = 1;