aboutsummaryrefslogtreecommitdiffstats
path: root/epan/tvbuff-int.h
diff options
context:
space:
mode:
authorEvan Huus <eapache@gmail.com>2013-09-07 18:20:52 +0000
committerEvan Huus <eapache@gmail.com>2013-09-07 18:20:52 +0000
commit9fd46c37a89dce1de754087bbc1154c5593108b0 (patch)
treeb0fcc2a31e3345178e2cab84bb08d448bb251749 /epan/tvbuff-int.h
parent6a4364bb40a1b2c6a164d31d7ef9de6321a940ba (diff)
- no need for a doubly-linked list of TVBs, single is simpler
- support merging chains in tvb_add_to_chain - when we have an old reassembled TVB, just merge the chains rather than freeing it (we may still need it as it may already be a data source) - modelines Fixes https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9027 #BACKPORT, but it's gonna be messy... svn path=/trunk/; revision=51825
Diffstat (limited to 'epan/tvbuff-int.h')
-rw-r--r--epan/tvbuff-int.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/epan/tvbuff-int.h b/epan/tvbuff-int.h
index e57d176528..fcac4cf48b 100644
--- a/epan/tvbuff-int.h
+++ b/epan/tvbuff-int.h
@@ -49,7 +49,6 @@ struct tvb_ops {
struct tvbuff {
/* Doubly linked list pointers */
tvbuff_t *next;
- tvbuff_t *previous;
/* Record-keeping */
const struct tvb_ops *ops;