mirror of
https://github.com/phpseclib/phpseclib.git
synced 2025-01-27 00:58:25 +00:00
Fix undefined $raw error
This commit is contained in:
parent
eefcb55138
commit
01d7c96a11
@ -1128,6 +1128,7 @@ class Net_SSH1
|
|||||||
|
|
||||||
$padding_length = 8 - ($temp['length'] & 7);
|
$padding_length = 8 - ($temp['length'] & 7);
|
||||||
$length = $temp['length'] + $padding_length;
|
$length = $temp['length'] + $padding_length;
|
||||||
|
$raw = '';
|
||||||
|
|
||||||
while ($length > 0) {
|
while ($length > 0) {
|
||||||
$temp = fread($this->fsock, $length);
|
$temp = fread($this->fsock, $length);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user