libstdc++: Fix out-of-bounds string_view access in filesystem::path [PR 97167]
authorJonathan Wakely <jwakely@redhat.com>
Tue, 22 Sep 2020 19:02:58 +0000 (20:02 +0100)
committerJonathan Wakely <jwakely@redhat.com>
Tue, 22 Sep 2020 19:02:58 +0000 (20:02 +0100)
libstdc++-v3/ChangeLog:

PR libstdc++/97167
* src/c++17/fs_path.cc (path::_Parser::root_path()): Check
for empty string before inspecting the first character.
* testsuite/27_io/filesystem/path/append/source.cc: Append
empty string_view to path.

libstdc++-v3/src/c++17/fs_path.cc
libstdc++-v3/testsuite/27_io/filesystem/path/append/source.cc

index cea7aa0..6e907b1 100644 (file)
@@ -81,7 +81,7 @@ struct path::_Parser
     const size_t len = input.size();
 
     // look for root name or root directory
-    if (is_dir_sep(input[0]))
+    if (len && is_dir_sep(input[0]))
       {
 #if SLASHSLASH_IS_ROOTNAME
        // look for root name, such as "//foo"
index 2fceee9..dc73319 100644 (file)
@@ -161,6 +161,15 @@ test06()
   test(p2, s.c_str());
 }
 
+void
+test07()
+{
+  path p, p0;
+  std::string_view s;
+  p /= s; // PR libstdc++/97167
+  compare_paths(p, p0);
+}
+
 int
 main()
 {
@@ -170,4 +179,5 @@ main()
   test04();
   test05();
   test06();
+  test07();
 }