mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
Fix an uninitialized variable.
This commit is contained in:
parent
40206904ba
commit
4b18501b00
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue