diff options
author | Jack Lloyd <[email protected]> | 2017-11-15 15:07:37 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2017-11-15 16:50:53 -0500 |
commit | e1b828559c5a96248d4ccfc77899ecfe22ba13c9 (patch) | |
tree | 9dc6d646da2115c8f82dabc0b917205857dc7bb3 /src/lib/asn1 | |
parent | 2dc3e2286c811830f5bbc1da62cda087e9a80cb3 (diff) |
Update ASN.1 fuzzer
Diffstat (limited to 'src/lib/asn1')
-rw-r--r-- | src/lib/asn1/asn1_print.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/asn1/asn1_print.cpp b/src/lib/asn1/asn1_print.cpp index ccd06a380..3452e91c4 100644 --- a/src/lib/asn1/asn1_print.cpp +++ b/src/lib/asn1/asn1_print.cpp @@ -163,9 +163,9 @@ void ASN1_Pretty_Printer::decode(std::ostream& output, { try { - std::vector<uint8_t> bits; - data.decode(bits, type_tag); - BER_Decoder inner(bits); + std::vector<uint8_t> inner_bits; + data.decode(inner_bits, type_tag); + BER_Decoder inner(inner_bits); decode(output, inner, level + 1); // recurse } catch(...) |