aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-h225.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2005-03-20 10:57:39 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2005-03-20 10:57:39 +0000
commit67de5fc1004eb1e472c48da01a3a9682833d52fa (patch)
treed4ab1aafbed577bc58228fc8bbc314f67e63c136 /epan/dissectors/packet-h225.c
parent20ccb7b7c5c05e697a8f65a4afbdd7463e6301bd (diff)
Fix asn2eth to pass 0, not NULL, for the last argument to
"dissect_per_restricted_character_string()", which is a guint32, not a pointer. Re-generate packet-h225.c with the fixed asn2eth. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@13819 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-h225.c')
-rw-r--r--epan/dissectors/packet-h225.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-h225.c b/epan/dissectors/packet-h225.c
index 8da617f4b6..3e1697cc01 100644
--- a/epan/dissectors/packet-h225.c
+++ b/epan/dissectors/packet-h225.c
@@ -2654,7 +2654,7 @@ static int
dissect_h225_TBCD_STRING(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree, int hf_index) {
offset = dissect_per_restricted_character_string(tvb, offset, pinfo, tree, hf_index,
-1, -1, "0123456789#*abc", strlen("0123456789#*abc"),
- NULL, NULL);
+ NULL, 0);
return offset;
}