r10240 - in packages/trunk/libphysfs: . debian debian/patches

Gonéri Le Bouder goneri at alioth.debian.org
Fri Aug 28 21:49:46 UTC 2009


Author: goneri
Date: 2009-08-28 21:49:46 +0000 (Fri, 28 Aug 2009)
New Revision: 10240

Added:
   packages/trunk/libphysfs/README.source
Modified:
   packages/trunk/libphysfs/debian/changelog
   packages/trunk/libphysfs/debian/control
   packages/trunk/libphysfs/debian/patches/03_gcc4.4-ftbfs.diff
Log:
* Fix 03_gcc4.4-ftbfs.diff so it try to overwrite buffer with
  uninitialised data Closes: #527208
* Standard Version 3.8.3
   - add a README.source


Added: packages/trunk/libphysfs/README.source
===================================================================
--- packages/trunk/libphysfs/README.source	                        (rev 0)
+++ packages/trunk/libphysfs/README.source	2009-08-28 21:49:46 UTC (rev 10240)
@@ -0,0 +1,2 @@
+This package uses quilt for patch management, for more information see
+the file /usr/share/doc/quilt/README.source in the quilt package.

Modified: packages/trunk/libphysfs/debian/changelog
===================================================================
--- packages/trunk/libphysfs/debian/changelog	2009-08-28 21:44:40 UTC (rev 10239)
+++ packages/trunk/libphysfs/debian/changelog	2009-08-28 21:49:46 UTC (rev 10240)
@@ -1,3 +1,12 @@
+libphysfs (2.0.0-3.1) unstable; urgency=low
+
+  * Fix 03_gcc4.4-ftbfs.diff so it try to overwrite buffer with
+    uninitialised data Closes: #527208
+  * Standard Version 3.8.3 
+    - add a README.source
+
+ -- Gonéri Le Bouder <goneri at rulezlan.org>  Fri, 28 Aug 2009 22:52:39 +0200
+
 libphysfs (2.0.0-3) unstable; urgency=low
 
   * Change my email address.

Modified: packages/trunk/libphysfs/debian/control
===================================================================
--- packages/trunk/libphysfs/debian/control	2009-08-28 21:44:40 UTC (rev 10239)
+++ packages/trunk/libphysfs/debian/control	2009-08-28 21:49:46 UTC (rev 10240)
@@ -2,9 +2,11 @@
 Section: libs
 Priority: optional
 Maintainer: Debian Games Team <pkg-games-devel at lists.alioth.debian.org>
-Uploaders: Barry deFreese <bdefreese at debian.org>, Patrick Matthäi <pmatthaei at debian.org>
+Uploaders: Barry deFreese <bdefreese at debian.org>,
+ Patrick Matthäi <pmatthaei at debian.org>,
+ Gonéri Le Bouder <goneri at rulezlan.org>
 Build-Depends: debhelper (>= 5.0.0), quilt, cmake, doxygen, autotools-dev, zlib1g-dev, libreadline5-dev
-Standards-Version: 3.8.2
+Standards-Version: 3.8.3
 Homepage: http://www.icculus.org/physfs/
 Vcs-Svn: svn://svn.debian.org/svn/pkg-games/packages/trunk/libphysfs/
 Vcs-Browser: http://svn.debian.org/wsvn/pkg-games/packages/trunk/libphysfs/?op=log

Modified: packages/trunk/libphysfs/debian/patches/03_gcc4.4-ftbfs.diff
===================================================================
--- packages/trunk/libphysfs/debian/patches/03_gcc4.4-ftbfs.diff	2009-08-28 21:44:40 UTC (rev 10239)
+++ packages/trunk/libphysfs/debian/patches/03_gcc4.4-ftbfs.diff	2009-08-28 21:49:46 UTC (rev 10240)
@@ -21,7 +21,7 @@
              if (__PHYSFS_platformRead(in, buf, maxread - 4, 1) != 1)
                  return(-1);
 -            *((PHYSFS_uint32 *) (&buf[maxread - 4])) = extra;
-+            memcpy(&buf[maxread - 4], &extra, sizeof (extra));
++            memcpy(&extra, &buf[maxread - 4], sizeof (extra));
              totalread += maxread - 4;
          } /* if */
          else




More information about the Pkg-games-commits mailing list