aboutsummaryrefslogtreecommitdiffstats
path: root/lib/asn1/c_src
diff options
context:
space:
mode:
authorLukas Larsson <[email protected]>2011-07-06 11:03:39 +0200
committerLukas Larsson <[email protected]>2011-08-01 16:38:21 +0200
commit9cb7670e7f23a97fdc207c66bd7872ffb11ddb90 (patch)
treeb8df903f1bf26f7ed947bf468e1251cc9c75407d /lib/asn1/c_src
parent34ed5863b8dee836ae45d7c0ed78c055f28c7707 (diff)
downloadotp-9cb7670e7f23a97fdc207c66bd7872ffb11ddb90.tar.gz
otp-9cb7670e7f23a97fdc207c66bd7872ffb11ddb90.tar.bz2
otp-9cb7670e7f23a97fdc207c66bd7872ffb11ddb90.zip
Cannot be a binary as decode creates tuples
Diffstat (limited to 'lib/asn1/c_src')
-rw-r--r--lib/asn1/c_src/asn1_erl_nif.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/asn1/c_src/asn1_erl_nif.c b/lib/asn1/c_src/asn1_erl_nif.c
index e9f67636cc..7ce461ad5c 100644
--- a/lib/asn1/c_src/asn1_erl_nif.c
+++ b/lib/asn1/c_src/asn1_erl_nif.c
@@ -965,7 +965,7 @@ int decode_value(ErlNifEnv* env, ERL_NIF_TERM *value, unsigned char *in_buf,
(*ib_index)++;
if (indef == 1) { /* in this case it is desireably to check that indefinite length
end bytes exist in inbuffer */
- curr_head = enif_make_list(env, 0); // Might want to change this list to a binary
+ curr_head = enif_make_list(env, 0);
while (!(in_buf[*ib_index] == 0 && in_buf[*ib_index + 1] == 0)) {
if (*ib_index >= in_buf_len)
return ASN1_INDEF_LEN_ERROR;
@@ -983,7 +983,7 @@ int decode_value(ErlNifEnv* env, ERL_NIF_TERM *value, unsigned char *in_buf,
int end_index = *ib_index + len;
if (end_index > in_buf_len)
return ASN1_LEN_ERROR;
- curr_head = enif_make_list(env, 0); // might want to change this list to a binary
+ curr_head = enif_make_list(env, 0);
while (*ib_index < end_index) {
if ((maybe_ret = decode(env, &term, in_buf, ib_index, in_buf_len))