diff options
author | Guy Harris <guy@alum.mit.edu> | 2000-11-13 08:58:17 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2000-11-13 08:58:17 +0000 |
commit | 9985115b8baf5bb77f376647f505a7892ba61028 (patch) | |
tree | f490426cc9cf304561779db94f5dbc3eef6c5395 /packet-rtsp.c | |
parent | ead1cadaf3100560e373cc7395d09744d3288ef4 (diff) | |
download | wireshark-9985115b8baf5bb77f376647f505a7892ba61028.tar.gz wireshark-9985115b8baf5bb77f376647f505a7892ba61028.tar.bz2 wireshark-9985115b8baf5bb77f376647f505a7892ba61028.zip |
Use "tvb_offset_exists()" rather than "tvb_length_remaining()" to check
whether there's any data left in the tvbuff starting at a specified
offset.
svn path=/trunk/; revision=2636
Diffstat (limited to 'packet-rtsp.c')
-rw-r--r-- | packet-rtsp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-rtsp.c b/packet-rtsp.c index b2d6de0266..d0699262c9 100644 --- a/packet-rtsp.c +++ b/packet-rtsp.c @@ -4,7 +4,7 @@ * Jason Lango <jal@netapp.com> * Liberally copied from packet-http.c, by Guy Harris <guy@alum.mit.edu> * - * $Id: packet-rtsp.c,v 1.24 2000/11/12 21:23:53 guy Exp $ + * $Id: packet-rtsp.c,v 1.25 2000/11/13 08:58:10 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -233,7 +233,7 @@ dissect_rtsp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree) /* * Process the packet data, a line at a time. */ - while (tvb_length_remaining(tvb, offset)) { + while (tvb_offset_exists(tvb, offset)) { /* * Find the end of the line. */ |