Fix a bug that the glob pattern parser falls in an infinite loop for invalid patterns.
authorRui Ueyama <ruiu@google.com>
Tue, 20 Dec 2016 03:12:28 +0000 (03:12 +0000)
committerRui Ueyama <ruiu@google.com>
Tue, 20 Dec 2016 03:12:28 +0000 (03:12 +0000)
llvm-svn: 290160

lld/ELF/Strings.cpp
lld/test/ELF/version-script-complex-wildcards.s

index 349325c..47752a6 100644 (file)
@@ -39,6 +39,7 @@ BitVector GlobPattern::scan(StringRef &S) {
     size_t End = S.find(']', 1);
     if (End == StringRef::npos) {
       error("invalid glob pattern: " + Original);
+      S = "";
       return BitVector(256, false);
     }
     StringRef Chars = S.substr(1, End - 1);
index 8291c25..61e1069 100644 (file)
 # RUN: ld.lld --version-script %t8.script -shared %t.o -o %t8.so
 # RUN: llvm-readobj -V %t8.so | FileCheck %s --check-prefix=ABBABC
 
+# RUN: echo "FOO { global: extern \"C++\" { a[; }; };" > %t9.script
+# RUN: not ld.lld --version-script %t9.script -shared %t.o -o %t9.so 2>&1 \
+# RUN:   | FileCheck %s --check-prefix=ERROR
+# ERROR: invalid glob pattern: a[
+
 .text
 .globl _Z3abci
 .type _Z3abci,@function