Explorar el Código

* Fix stack overflow

git-svn-id: trunk@40838 -
michael hace 6 años
padre
commit
fa94c4dfb2
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      packages/openssl/src/openssl.pas

+ 1 - 1
packages/openssl/src/openssl.pas

@@ -3683,7 +3683,7 @@ function PEM_write_bio_PKCS7(bp : PBIO; x : PPKCS7) : cint;
 
 begin
   if InitSSLInterface and Assigned(_PEM_write_bio_PKCS7) then
-    Result := PEM_write_bio_PKCS7(bp, x)
+    Result := _PEM_write_bio_PKCS7(bp, x)
   else
     Result := 0;
 end;