* genscripts.sh: Respect LIBPATH_SUFFIX when not using sysroot.
[deliverable/binutils-gdb.git] / libiberty / cp-demangle.c
index c7ee8786d9225031832c205a223aa2b4af0d6218..2fa59785f2fb130d08538891e53c25deb42492c8 100644 (file)
@@ -2505,6 +2505,8 @@ d_substitution (struct d_info *di, int prefix)
                id = id * 36 + c - 'A' + 10;
              else
                return NULL;
+             if (id < 0)
+               return NULL;
              c = d_next_char (di);
            }
          while (c != '_');
This page took 0.022498 seconds and 4 git commands to generate.