More win32 build fixes.
[libdcp.git] / src / certificates.cc
index 085e462272130bd2b39c4d2878630a3211ec9c14..3566fba01e4ee2a5a4c7473f26eaba5812aa36fb 100644 (file)
@@ -97,10 +97,10 @@ Certificate::issuer () const
 string
 Certificate::asn_to_utf8 (ASN1_STRING* s)
 {
-       unsigned char* buf = new unsigned char[256];
+       unsigned char* buf = 0;
        ASN1_STRING_to_UTF8 (&buf, s);
        string const u (reinterpret_cast<char *> (buf));
-       delete[] buf;
+       OPENSSL_free (buf);
        return u;
 }