1
0
mirror of https://github.com/danog/phpseclib.git synced 2024-11-27 04:46:26 +01:00

Merge branch '1.0' of https://github.com/phpseclib/phpseclib into small-tweaks-2

This commit is contained in:
terrafrost 2015-12-11 13:44:39 -06:00
commit f17f1b2baf
3 changed files with 13 additions and 4 deletions

View File

@ -7,7 +7,6 @@ php:
- 5.5.9
- 5.5
- 5.6
- hhvm
env:
global:
@ -18,7 +17,13 @@ env:
before_install: true
install:
- sudo apt-get install parallel
- wget http://ftp.gnu.org/gnu/parallel/parallel-20120522.tar.bz2
- tar -xvjf parallel*
- cd parallel*
- ./configure
- make
- sudo make install
- cd ..
- eval `ssh-agent -s`
- travis/setup-secure-shell.sh
- sh -c "if [ '$TRAVIS_PHP_VERSION' != 'hhvm' ]; then travis/install-php-extensions.sh; fi"

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];
}
}
/**

View File

@ -18,7 +18,7 @@ class Unit_File_ASN1Test extends PhpseclibTestCase
$KDC_REP = array(
'type' => FILE_ASN1_TYPE_SEQUENCE,
'children' => array(
'pvno' => array(
'pvno' => array(
'constant' => 0,
'optional' => true,
'explicit' => true,