mirror of
https://github.com/phpseclib/phpseclib.git
synced 2025-01-04 22:55:25 +00:00
SSH2: use weakreference when available to stop memory leak
This commit is contained in:
parent
f1c4164687
commit
e3df33183c
@ -1123,7 +1123,7 @@ class SSH2
|
||||
31 => 'NET_SSH2_MSG_KEX_ECDH_REPLY']
|
||||
);
|
||||
|
||||
self::$connections[$this->getResourceId()] = $this;
|
||||
self::$connections[$this->getResourceId()] = class_exists('WeakReference') ? \WeakReference::create($this) : $this;
|
||||
|
||||
if (is_resource($host)) {
|
||||
$this->fsock = $host;
|
||||
|
Loading…
Reference in New Issue
Block a user