aboutsummaryrefslogtreecommitdiffstats
path: root/epan/conversation.h
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2017-02-08 19:32:13 -0500
committerMichael Mann <mmann78@netscape.net>2017-02-10 03:42:16 +0000
commite0fafa54758c8d0e19df39728df0792d512c068c (patch)
tree99351a32bc30791425bd5678e88b119dfa3887f8 /epan/conversation.h
parentf8b69fb349986dce4ae77da9455cd12ba804797d (diff)
Convert conversation data_list from GSList to wmem_tree.
Change-Id: I7eac4b4da86d1ac1ce8753f424b698a9949df00b Reviewed-on: https://code.wireshark.org/review/20041 Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'epan/conversation.h')
-rw-r--r--epan/conversation.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/conversation.h b/epan/conversation.h
index 2045a09d19..7b1c0a6b81 100644
--- a/epan/conversation.h
+++ b/epan/conversation.h
@@ -78,7 +78,7 @@ typedef struct conversation {
guint32 setup_frame; /** frame number that setup this conversation */
/* Assume that setup_frame is also the lowest frame number for now. */
guint32 last_frame; /** highest frame number in this conversation */
- GSList *data_list; /** list of data associated with conversation */
+ wmem_tree_t *data_list; /** list of data associated with conversation */
wmem_tree_t *dissector_tree;
/** tree containing protocol dissector client associated with conversation */
guint options; /** wildcard flags */