aboutsummaryrefslogtreecommitdiffstats
path: root/epan/tvbuff.h
diff options
context:
space:
mode:
authorEvan Huus <eapache@gmail.com>2014-05-14 13:00:37 -0400
committerEvan Huus <eapache@gmail.com>2014-05-14 17:12:12 +0000
commita1b939313f75220beaf0d3342cd5f413cb9edcae (patch)
tree9868d1e4d575843d0b931f60447031a9d14eeabb /epan/tvbuff.h
parentd7c4bde2799084aee717dbaa04d7fd4be06cd989 (diff)
Revert "Don't throw for offset at end of TVB with len -1."
This reverts commit fe195c0c978b4b92dc5a77daa6449a7f1314243d. Conflicts: epan/tvbuff.c Change-Id: I1af618d0bd1e6211281b6d67c0ad197cfa513a0c Reviewed-on: https://code.wireshark.org/review/1639 Reviewed-by: Evan Huus <eapache@gmail.com>
Diffstat (limited to 'epan/tvbuff.h')
-rw-r--r--epan/tvbuff.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/epan/tvbuff.h b/epan/tvbuff.h
index 69563b495d..e68095759a 100644
--- a/epan/tvbuff.h
+++ b/epan/tvbuff.h
@@ -240,12 +240,6 @@ WS_DLL_PUBLIC gint tvb_captured_length_remaining(const tvbuff_t *tvb, const gint
WS_DLL_PUBLIC guint tvb_ensure_captured_length_remaining(const tvbuff_t *tvb,
const gint offset);
-/** Same as above, but permits offsets at the end of the tvbuff (such as an
- * offset of 0 in a tvbuff with a snapshot length of 0, which is a silly thing
- * to do but we have to be able to handle it gracefully). */
-WS_DLL_PUBLIC guint tvb_ensure_captured_length_remaining_cheat(
- const tvbuff_t *tvb, const gint offset);
-
/* DEPRECATED, do not use in new code, call tvb_ensure_captured_length_remaining directly! */
#define tvb_ensure_length_remaining tvb_ensure_captured_length_remaining