aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-h282.c
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2009-11-22 17:00:45 +0000
committerAnders Broman <anders.broman@ericsson.com>2009-11-22 17:00:45 +0000
commit98c852386ddaef876313dee9de46a3a7562ec059 (patch)
tree3ec217fd1ee599a000f33844f07e921889db0059 /epan/dissectors/packet-h282.c
parenta6cb92c7a937e4e457eec84ff47921204a0242c2 (diff)
Handle lenght restriction extension of restricted strings.
Fixes https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4251 svn path=/trunk/; revision=31047
Diffstat (limited to 'epan/dissectors/packet-h282.c')
-rw-r--r--epan/dissectors/packet-h282.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-h282.c b/epan/dissectors/packet-h282.c
index 77b2a91b26..0cab86f64b 100644
--- a/epan/dissectors/packet-h282.c
+++ b/epan/dissectors/packet-h282.c
@@ -753,7 +753,7 @@ dissect_h282_NonStandardIdentifier(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t
static int
dissect_h282_TextString(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
offset = dissect_per_BMPString(tvb, offset, actx, tree, hf_index,
- 0, 255);
+ 0, 255, FALSE);
return offset;
}