Browse Source

* Fix stack overflow

git-svn-id: trunk@40838 -
michael 6 years ago
parent
commit
fa94c4dfb2
1 changed files with 1 additions and 1 deletions
  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;