From b2d343afad675d0aaf9902ad516142f20c23b9de Mon Sep 17 00:00:00 2001 From: Dominique Fournier Date: Mon, 13 Apr 2020 16:28:45 +0000 Subject: [PATCH] tcpclient : manage the php_errormsg correctely if it doesn't exists git-svn-id: https://svn.fournier38.fr/svn/ProgSVN/trunk@5911 bf3deb0d-5f1a-0410-827f-c0cc1f45334c --- tcpclient.php | 1 + 1 file changed, 1 insertion(+) diff --git a/tcpclient.php b/tcpclient.php index ef86827..f1551d0 100644 --- a/tcpclient.php +++ b/tcpclient.php @@ -215,6 +215,7 @@ class tcpclient $optionsMerged["ssl"] = array_merge ($optionsBase["ssl"], $options); stream_set_blocking ($this->socket, true); stream_context_set_option ($this->socket, $optionsMerged); + $php_errormsg = ""; ini_set ("track_errors", 1); $rc = @stream_socket_enable_crypto ($this->socket, !!$val, $cryptoMethod); ini_set ("track_errors", 0);