Merge branch '2.0'

* 2.0:
  Fix PHP invalid index warning
This commit is contained in:
Andreas Fischer 2015-11-24 09:28:00 +01:00
commit 18cc8eb1c3

View File

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