r774 - in trunk: . archivers

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Wed Oct 12 18:03:56 EDT 2005


Author: icculus
Date: 2005-10-12 18:03:56 -0400 (Wed, 12 Oct 2005)
New Revision: 774

Modified:
   trunk/CHANGELOG
   trunk/archivers/wad.c
Log:
Patched archivers/wad.c to compile again.


Modified: trunk/CHANGELOG
===================================================================
--- trunk/CHANGELOG	2005-10-12 22:03:28 UTC (rev 773)
+++ trunk/CHANGELOG	2005-10-12 22:03:56 UTC (rev 774)
@@ -2,7 +2,8 @@
  * CHANGELOG.
  */
 
-10122005 - Fixed locateInStringList() in physfs.c (thanks, Matze!).
+10122005 - Fixed locateInStringList() in physfs.c (thanks, Matze!). Patched
+           archivers/wad.c to compile.
 09192005 - Make unix mutexes recursive above pthread layer...fixes deadlock on
            MacOS X, for now.
 09182005 - API BREAKAGE: PHYSFS_enumerateFilesCallback() now passes the

Modified: trunk/archivers/wad.c
===================================================================
--- trunk/archivers/wad.c	2005-10-12 22:03:28 UTC (rev 773)
+++ trunk/archivers/wad.c	2005-10-12 22:03:56 UTC (rev 774)
@@ -350,7 +350,7 @@
             if (sep != NULL)
             {
                 if (strncmp(dname, name, (sep - name)) == 0)
-                    cb(callbackdata, sep + 1);
+                    cb(callbackdata, origdir, sep + 1);
             } /* if */
         } /* for */
     } /* else */




More information about the physfs-commits mailing list