* Fix stack overflow

git-svn-id: trunk@40838 -
This commit is contained in:
michael 2019-01-10 22:11:33 +00:00
parent 2c6d41f8fe
commit fa94c4dfb2

View File

@ -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;