aboutsummaryrefslogtreecommitdiffstats
path: root/epan/tvbuff.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/tvbuff.c')
-rw-r--r--epan/tvbuff.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/epan/tvbuff.c b/epan/tvbuff.c
index a6ab643fcf..be7f1403e5 100644
--- a/epan/tvbuff.c
+++ b/epan/tvbuff.c
@@ -457,24 +457,6 @@ tvb_captured_length_remaining(const tvbuff_t *tvb, const gint offset)
return rem_length;
}
-/* Just like tvb_ensure_captured_length_remaining except it doesn't have to
- * guarantee that at least one byte is available, it simply guarantees that the
- * offset exists (so a 0 offset in a 0-length tvb won't throw) */
-guint
-tvb_ensure_captured_length_remaining_cheat(const tvbuff_t *tvb, const gint offset)
-{
- guint abs_offset, rem_length;
- int exception = 0;
-
- DISSECTOR_ASSERT(tvb && tvb->initialized);
-
- COMPUTE_OFFSET_AND_REMAINING(tvb, offset, &abs_offset, rem_length, exception);
- if (exception)
- THROW(exception);
-
- return rem_length;
-}
-
guint
tvb_ensure_captured_length_remaining(const tvbuff_t *tvb, const gint offset)
{