fix an uninitialized variable

This commit is contained in:
Bill Currie 2002-11-16 02:03:39 +00:00
parent 78785a90f8
commit f26ec7377c

View file

@ -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) {