From: drow Date: Mon, 13 Jan 2003 20:26:13 +0000 (+0000) Subject: * source.c (openp): Squelch warning about "filename". X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=0b519f34083820731908cd3c44b5da5292521dc1;p=pf3gnuchains%2Fsourceware.git * source.c (openp): Squelch warning about "filename". --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index e4da29efc1..0fd32b89f7 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,9 @@ 2003-01-13 Daniel Jacobowitz + * source.c (openp): Squelch warning about "filename". + +2003-01-13 Daniel Jacobowitz + * source.c (openp): If the file does not exist don't necessarily search the path. diff --git a/gdb/source.c b/gdb/source.c index f3700db818..c2269fadcd 100644 --- a/gdb/source.c +++ b/gdb/source.c @@ -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]))