Ralf Junker 1 Posted April 24, 2020 OverbyteIcsSSLEAY.pas line 2097 (SVN 1464) declares f_SSL_clear() like this: f_SSL_clear: procedure(S: PSSL); cdecl = nil; This is different from the OpenSSL definition. The Pascal declaration is a procedure, but the C declaration a function with an Integer return value: int SSL_clear(SSL *ssl); Reference: https://www.openssl.org/docs/man1.1.1/man3/SSL_clear.html Ralf Share this post Link to post
Angus Robertson 574 Posted April 24, 2020 Thanks, will fix but that function is never used by ICS. Angus Share this post Link to post