From e6d9b9c2fac5d91fbbda8be10775d6903b9c360a Mon Sep 17 00:00:00 2001 From: Doug Evans Date: Wed, 14 Apr 2010 21:22:29 +0000 Subject: * source.c (open): Strip DOS drive letter if present before concatenating string to search path. --- gdb/source.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'gdb/source.c') diff --git a/gdb/source.c b/gdb/source.c index e9893ba..47caa14 100644 --- a/gdb/source.c +++ b/gdb/source.c @@ -724,6 +724,10 @@ openp (const char *path, int opts, const char *string, goto done; } + /* For dos paths, d:/foo -> /foo, and d:foo -> foo. */ + if (HAS_DRIVE_SPEC (string)) + string = STRIP_DRIVE_SPEC (string); + /* /foo => foo, to avoid multiple slashes that Emacs doesn't like. */ while (IS_DIR_SEPARATOR(string[0])) string++; -- cgit v1.1