From: havoc Date: Sun, 6 Nov 2005 15:56:28 +0000 (+0000) Subject: fix stupid crash X-Git-Tag: xonotic-v0.1.0preview~4492 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=c00e42bb2a8482dcac8fca0deb780b1fce90c961;p=xonotic%2Fdarkplaces.git fix stupid crash git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@5792 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/wad.c b/wad.c index 13a7b9fd..7d488dbd 100644 --- 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);