Merge pull request #883 from bantu/pr-876-1.0

Fix PHP invalid index warning

* bantu/pr-876-1.0:
  Fix PHP invalid index warning
This commit is contained in:
Andreas Fischer 2015-11-24 09:28:00 +01:00
commit ae99173aed

View File

@ -3880,7 +3880,11 @@ class Net_SSH2
*/
function getLastError()
{
return $this->errors[count($this->errors) - 1];
$count = count($this->errors);
if ($count > 0) {
return $this->errors[$count - 1];
}
}
/**