Skip to content
Snippets Groups Projects
Commit bd514e96 authored by Henrik (Grubba) Grubbström's avatar Henrik (Grubba) Grubbström
Browse files

Standards.X509.TBSCertificate: Fixed infinite loop.

`der() called get_der(), which starts by gets the value of
the der variable, looping ensued.
parent 3b33c8aa
Branches
Tags
No related merge requests found
......@@ -382,7 +382,7 @@ class TBSCertificate
string `der()
{
if (internal_der) return internal_der;
return internal_der = get_der();
return internal_der = der_encode();
}
//!
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment