diff options
author | Björn Gustavsson <[email protected]> | 2013-03-06 07:40:02 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2013-05-31 14:52:18 +0200 |
commit | a07a97291fcac1d3132a185d0efd7b4089720d90 (patch) | |
tree | d0dcd598ffe216f304522733cec7e81439b8defd /lib/asn1/src/asn1rtt_per.erl | |
parent | f863775f492d31f4f38fc6e661dd6391810cfc37 (diff) | |
download | otp-a07a97291fcac1d3132a185d0efd7b4089720d90.tar.gz otp-a07a97291fcac1d3132a185d0efd7b4089720d90.tar.bz2 otp-a07a97291fcac1d3132a185d0efd7b4089720d90.zip |
PER/UPER: Remove support for a list argument for encode_open_type/1
Almost always, encode_open_type/1 is called with the return value
from complete/1, which always is a binary. In the rare situation
that encode_open_type/1 is called directly with data from the
user application, call iolist_to_binary/1 before calling
encode_open_type/1.
Diffstat (limited to 'lib/asn1/src/asn1rtt_per.erl')
-rw-r--r-- | lib/asn1/src/asn1rtt_per.erl | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/lib/asn1/src/asn1rtt_per.erl b/lib/asn1/src/asn1rtt_per.erl index 74ae11632d..21acb4e1ec 100644 --- a/lib/asn1/src/asn1rtt_per.erl +++ b/lib/asn1/src/asn1rtt_per.erl @@ -146,15 +146,7 @@ set_choice_tag(_Alt,[],_Tag) -> %% | binary %% Contraint = not used in this version %% -encode_open_type(Val) when is_list(Val) -> - Bin = list_to_binary(Val), - case byte_size(Bin) of - Size when Size > 255 -> - [encode_length(Size),21,<<Size:16>>,Bin]; - Size -> - [encode_length(Size),20,Size,Bin] - end; -encode_open_type(Val) when is_binary(Val) -> +encode_open_type(Val) -> case byte_size(Val) of Size when Size > 255 -> [encode_length(Size),21,<<Size:16>>,Val]; % octets implies align |