]> git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
fix stupid crash
authorhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Sun, 6 Nov 2005 15:56:28 +0000 (15:56 +0000)
committerhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Sun, 6 Nov 2005 15:56:28 +0000 (15:56 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@5792 d7cf8633-e32d-0410-b094-e92efae38249

wad.c

diff --git a/wad.c b/wad.c
index 13a7b9fdfcd6aa55c17e5d1b7261a7c76b2979ba..7d488dbd961359f8b10733fa7ba20c7680c88c4e 100644 (file)
--- a/wad.c
+++ b/wad.c
@@ -66,7 +66,6 @@ void *W_GetLumpName(const char *name)
        char clean[16];
        wadinfo_t *header;
        int infotableofs;
-       void *temp;
        static int wad_loaded = false;
        static int wad_numlumps = 0;
        static lumpinfo_t *wad_lumps = NULL;
@@ -79,7 +78,7 @@ void *W_GetLumpName(const char *name)
                wad_loaded = true;
                if ((wad_base = FS_LoadFile ("gfx.wad", cl_mempool, false, &filesize)))
                {
-                       if (memcmp(temp, "WAD2", 4))
+                       if (memcmp(wad_base, "WAD2", 4))
                        {
                                Con_Print("gfx.wad doesn't have WAD2 id\n");
                                Mem_Free(wad_base);