浏览代码

* Fix stack overflow

git-svn-id: trunk@40838 -
michael 6 年之前
父节点
当前提交
fa94c4dfb2
共有 1 个文件被更改,包括 1 次插入1 次删除
  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;