Merge branch 'master' into php5

* master:
  Fix undefined $raw error
This commit is contained in:
Andreas Fischer 2014-12-26 10:48:16 +01:00
commit 6205531907

View File

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