From b6efc1db796a6be89f5f72a7c9485a31e1b99361 Mon Sep 17 00:00:00 2001 From: Simon Rettberg Date: Thu, 20 Mar 2014 17:44:58 +0100 Subject: Fix handle leak in downloading, better error reporting on failed downloads, add nvidia_libs addon to downloads --- modules/minilinux.inc.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'modules') diff --git a/modules/minilinux.inc.php b/modules/minilinux.inc.php index 49e72616..72af0eb4 100644 --- a/modules/minilinux.inc.php +++ b/modules/minilinux.inc.php @@ -15,6 +15,7 @@ function render_module() checkFile($files, 'initramfs-stage31'); checkFile($files, 'stage32.sqfs'); checkFile($files, 'vmware.sqfs'); + checkFile($files, 'nvidia_libs.sqfs'); Render::addTemplate('page-minilinux', array('files' => $files, 'token' => Session::get('token'))); } @@ -65,7 +66,7 @@ function checkFile(&$files, $name) $remoteMd5 = Util::download($remote, 3, $code); $remoteMd5 = strtolower(preg_replace('/[^0-9a-f]/is', '', $remoteMd5)); if ($code != 200) { - Message::addError('remote-timeout', $remote); + Message::addError('remote-timeout', $remote, $code); return false; } if ($existingMd5 === $remoteMd5) { -- cgit v1.2.3-55-g7522