Fix undefined $raw error

This commit is contained in:
Clint Nelissen 2014-12-24 12:24:17 -08:00 committed by Andreas Fischer
parent eefcb55138
commit 01d7c96a11

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);