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
78785a90f8
commit
f26ec7377c
1 changed files with 1 additions and 1 deletions
|
@ -543,7 +543,7 @@ void
|
|||
GIB_File_Read_f (void)
|
||||
{
|
||||
QFile *file;
|
||||
char *path, *contents;
|
||||
char *path, *contents = 0;
|
||||
int len;
|
||||
|
||||
if (GIB_Argc () != 2) {
|
||||
|
|
Loading…
Reference in a new issue