pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/games/scummvm-tools



Module Name:    pkgsrc
Committed By:   joerg
Date:           Thu Dec 15 23:53:38 UTC 2016

Modified Files:
        pkgsrc/games/scummvm-tools: distinfo
Added Files:
        pkgsrc/games/scummvm-tools/patches: patch-engines_gob_degob__script.cpp

Log Message:
Don't expect pointers to be ordered relative to 0.


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 pkgsrc/games/scummvm-tools/distinfo
cvs rdiff -u -r0 -r1.1 \
    pkgsrc/games/scummvm-tools/patches/patch-engines_gob_degob__script.cpp

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/games/scummvm-tools/distinfo
diff -u pkgsrc/games/scummvm-tools/distinfo:1.7 pkgsrc/games/scummvm-tools/distinfo:1.8
--- pkgsrc/games/scummvm-tools/distinfo:1.7     Tue Nov  3 20:57:04 2015
+++ pkgsrc/games/scummvm-tools/distinfo Thu Dec 15 23:53:38 2016
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.7 2015/11/03 20:57:04 agc Exp $
+$NetBSD: distinfo,v 1.8 2016/12/15 23:53:38 joerg Exp $
 
 SHA1 (scummvm-tools-1.4.0.tar.bz2) = 44a422872180f8aea3eb57e0462d930e22c533ba
 RMD160 (scummvm-tools-1.4.0.tar.bz2) = baabb1d8fb99be72c5eafb186aa132b797edc58d
@@ -7,3 +7,4 @@ Size (scummvm-tools-1.4.0.tar.bz2) = 943
 SHA1 (patch-Makefile.common) = d296c951793facfc35835a250b652cedc25b949b
 SHA1 (patch-configure) = cf5da2584ec2fa05fb81faa115f8de0616dd04f7
 SHA1 (patch-decompiler_refcounted.h) = 509b95e42fa52a1f2c1892dbcfae829a9b7c92f6
+SHA1 (patch-engines_gob_degob__script.cpp) = 6bd377ea818076bc12da69b4d1c2588fa5ead449

Added files:

Index: pkgsrc/games/scummvm-tools/patches/patch-engines_gob_degob__script.cpp
diff -u /dev/null pkgsrc/games/scummvm-tools/patches/patch-engines_gob_degob__script.cpp:1.1
--- /dev/null   Thu Dec 15 23:53:38 2016
+++ pkgsrc/games/scummvm-tools/patches/patch-engines_gob_degob__script.cpp      Thu Dec 15 23:53:38 2016
@@ -0,0 +1,13 @@
+$NetBSD: patch-engines_gob_degob__script.cpp,v 1.1 2016/12/15 23:53:38 joerg Exp $
+
+--- engines/gob/degob_script.cpp.orig  2016-12-15 16:41:44.458856760 +0000
++++ engines/gob/degob_script.cpp
+@@ -182,7 +182,7 @@ byte *ExtTable::unpack(const byte *packe
+ Script::Script(byte *totData, uint32 totSize, ExtTable *extTable) :
+       _totData(totData), _ptr(totData), _totSize(totSize), _extTable(extTable) {
+ 
+-      assert((totData > 0) && (totSize > 128));
++      assert(totData && (totSize > 128));
+ 
+       _indent = 0;
+ 



Home | Main Index | Thread Index | Old Index