Fix an uninitialized variable.

This commit is contained in:
Bill Currie 2013-01-20 21:04:16 +09:00
parent 40206904ba
commit 4b18501b00

View file

@ -822,7 +822,7 @@ qfs_findfile_search (const vpath_t *vpath, const searchpath_t *sp,
}
// is the element a pak file?
if (sp->pack) {
dpackfile_t *packfile;
dpackfile_t *packfile = 0;
for (fn = fnames; *fn; fn++) {
packfile = pack_find_file (sp->pack, *fn);