* source.c (open): Strip DOS drive letter if present before
authorDoug Evans <dje@google.com>
Wed, 14 Apr 2010 21:22:29 +0000 (21:22 +0000)
committerDoug Evans <dje@google.com>
Wed, 14 Apr 2010 21:22:29 +0000 (21:22 +0000)
concatenating string to search path.

gdb/ChangeLog
gdb/source.c

index 7749adf..a3f6f10 100644 (file)
@@ -1,3 +1,8 @@
+2010-04-14  Doug Evans  <dje@google.com>
+
+       * source.c (open): Strip DOS drive letter if present before
+       concatenating string to search path.
+
 2010-04-14  Pedro Alves  <pedro@codesourcery.com>
 
        * objfiles.h (gdb_bfd_close_or_warn): Declare.
index e9893ba..47caa14 100644 (file)
@@ -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++;