Blame SOURCES/wireshark-0019-CVE-19625.patch

164878
diff --git a/epan/tvbuff_composite.c b/epan/tvbuff_composite.c
164878
index 5832477f81..e5ab7c8b17 100644
164878
--- a/epan/tvbuff_composite.c
164878
+++ b/epan/tvbuff_composite.c
164878
@@ -51,12 +51,9 @@ composite_free(tvbuff_t *tvb)
164878
 }
164878
 
164878
 static guint
164878
-composite_offset(const tvbuff_t *tvb, const guint counter)
164878
+composite_offset(const tvbuff_t *tvb _U_, const guint counter)
164878
 {
164878
-	const struct tvb_composite *composite_tvb = (const struct tvb_composite *) tvb;
164878
-	const tvbuff_t *member = (const tvbuff_t *)composite_tvb->composite.tvbs->data;
164878
-
164878
-	return tvb_offset_from_real_beginning_counter(member, counter);
164878
+	return counter;
164878
 }
164878
 
164878
 static const guint8*