* source.c (openp): Squelch warning about "filename".
authorDaniel Jacobowitz <drow@false.org>
Mon, 13 Jan 2003 20:26:15 +0000 (20:26 +0000)
committerDaniel Jacobowitz <drow@false.org>
Mon, 13 Jan 2003 20:26:15 +0000 (20:26 +0000)
gdb/ChangeLog
gdb/source.c

index e4da29e..0fd32b8 100644 (file)
@@ -1,5 +1,9 @@
 2003-01-13  Daniel Jacobowitz  <drow@mvista.com>
 
+       * source.c (openp): Squelch warning about "filename".
+
+2003-01-13  Daniel Jacobowitz  <drow@mvista.com>
+
        * source.c (openp): If the file does not exist don't necessarily
        search the path.
 
index f3700db..c2269fa 100644 (file)
@@ -687,7 +687,10 @@ openp (const char *path, int try_cwd_first, const char *string,
            goto done;
        }
       else
-       fd = -1;
+       {
+         filename = NULL;
+         fd = -1;
+       }
 
       for (i = 0; string[i]; i++)
        if (IS_DIR_SEPARATOR (string[i]))