aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-rpc.c
diff options
context:
space:
mode:
authorgerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>2006-07-09 22:12:02 +0000
committergerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>2006-07-09 22:12:02 +0000
commit9f8386d63f8fc6fb2bdeed2949795f46ca9a1227 (patch)
tree55cf0cb616310c4e42a93835a86f9ecffedaad3e /epan/dissectors/packet-rpc.c
parentc7f8e7a695c637e0aaf43bf7a763fb4f9f16fdfc (diff)
In new_format_oid(), handle a zero-length OID.
Fix a bug introduced recently in packet-rpc.c. Replace DISSECTOR_ASSERT() with THROW(ReportedBoundsError) in my recent checkins, since fuzz-test.sh sets WIRESHARK_ABORT_ON_DISSECTOR_BUG. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@18693 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-rpc.c')
-rw-r--r--epan/dissectors/packet-rpc.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/epan/dissectors/packet-rpc.c b/epan/dissectors/packet-rpc.c
index dade181535..516386be2a 100644
--- a/epan/dissectors/packet-rpc.c
+++ b/epan/dissectors/packet-rpc.c
@@ -488,7 +488,9 @@ rpc_roundup(unsigned int a)
unsigned int ret;
ret = a + ((mod)? 4-mod : 0);
/* Check for overflow */
- DISSECTOR_ASSERT(ret >= a);
+ if (ret < a)
+ THROW(ReportedBoundsError);
+ return ret;
}