1
0
mirror of https://github.com/danog/tgseclib.git synced 2024-11-26 20:24:39 +01:00

Merge pull request #583 from bantu/SSH1UndefinedVariableFix

Fix undefined $raw error

* bantu/SSH1UndefinedVariableFix:
  Fix undefined $raw error
This commit is contained in:
Andreas Fischer 2014-12-26 10:47:51 +01:00
commit 471cb1dfb0

View File

@ -1128,6 +1128,7 @@ class Net_SSH1
$padding_length = 8 - ($temp['length'] & 7);
$length = $temp['length'] + $padding_length;
$raw = '';
while ($length > 0) {
$temp = fread($this->fsock, $length);