diff options
author | Björn Gustavsson <[email protected]> | 2013-04-02 13:39:50 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2013-04-03 16:38:31 +0200 |
commit | f7c7510b55efe6a1ab1133f47ec4c3b0371784e8 (patch) | |
tree | 76c89f1eeb6044f6b9c949f8295f5a6170c7e779 /lib/asn1/test/asn1_SUITE_data/Param2.asn1 | |
parent | 45e356fb7b5d381a6e3c9ec83bf20fe9cefe8e4b (diff) | |
download | otp-f7c7510b55efe6a1ab1133f47ec4c3b0371784e8.tar.gz otp-f7c7510b55efe6a1ab1133f47ec4c3b0371784e8.tar.bz2 otp-f7c7510b55efe6a1ab1133f47ec4c3b0371784e8.zip |
Prevent loss of objects after the extension marker
In an object set with a single root object, objects after
the extension marker would be lost.
Diffstat (limited to 'lib/asn1/test/asn1_SUITE_data/Param2.asn1')
-rw-r--r-- | lib/asn1/test/asn1_SUITE_data/Param2.asn1 | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/asn1/test/asn1_SUITE_data/Param2.asn1 b/lib/asn1/test/asn1_SUITE_data/Param2.asn1 index 4393f875b6..09ccb367d8 100644 --- a/lib/asn1/test/asn1_SUITE_data/Param2.asn1 +++ b/lib/asn1/test/asn1_SUITE_data/Param2.asn1 @@ -33,4 +33,16 @@ BEGIN --Delete-end } + SingleRoot ::= SEQUENCE { + protocolIEs ProtocolIE-Container { { SingleRootIEs } }, + ... + } + + -- The extension was lost when there was a single root item. + SingleRootIEs S1AP-PROTOCOL-IES ::= { + { ID 1 TYPE OCTET STRING }, + ..., + { ID 2 TYPE INTEGER } + } + END |