[pkg-horde] [SCM] Debian Horde Packages repository: gollem package branch, debian-sid, updated. 3648dd9c176b27e26b93f34e8875fa8da546c9aa

Gregory Colpart reg at evolix.fr
Sat Oct 30 13:25:15 UTC 2010


The following commit has been merged in the debian-sid branch:
commit 3648dd9c176b27e26b93f34e8875fa8da546c9aa
Author: Gregory Colpart <reg at evolix.fr>
Date:   Sat Oct 30 15:23:02 2010 +0200

    Commit changes by Moritz Muehlenhoff

diff --git a/debian/changelog b/debian/changelog
index 63fc355..1d6ea09 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+gollem (1.1.1+debian0-1.1) unstable; urgency=medium
+
+  * Non-maintainer upload by the Security Team
+  * Fix CVE-2010-3447 (Closes: #598585)
+
+ -- Moritz Muehlenhoff <jmm at debian.org>  Sat, 23 Oct 2010 17:32:14 +0200
+
 gollem (1.1.1+debian0-1) unstable; urgency=low
 
   * New upstream release.
diff --git a/view.php b/view.php
index 2561f75..cb9b6ab 100644
--- a/view.php
+++ b/view.php
@@ -33,15 +33,13 @@ if (is_callable(array($GLOBALS['gollem_vfs'], 'readStream'))) {
     $stream = $GLOBALS['gollem_vfs']->readStream($filedir, $filename);
     if (is_a($stream, 'PEAR_Error')) {
         Horde::logMessage($stream, __FILE__, __LINE__, PEAR_LOG_NOTICE);
-        printf(_("Access denied to %s"), $filename);
-        exit;
+        Horde::fatal(sprintf(_("Access denied to %s"), $filename));
     }
 } else {
     $data = $GLOBALS['gollem_vfs']->read($filedir, $filename);
     if (is_a($data, 'PEAR_Error')) {
         Horde::logMessage($data, __FILE__, __LINE__, PEAR_LOG_NOTICE);
-        printf(_("Access denied to %s"), $filename);
-        exit;
+        Horde::fatal(sprintf(_("Access denied to %s"), $filename));
     }
 }
 

-- 
Debian Horde Packages repository: gollem package



More information about the pkg-horde-hackers mailing list