diff options
author | Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> | 1998-04-26 15:41:36 +0000 |
---|---|---|
committer | Jason Merrill <jason@gcc.gnu.org> | 1998-04-26 11:41:36 -0400 |
commit | 7bf407413f0d6b36bd1a799fea2d5863465dafed (patch) | |
tree | f6e2081283e8a479f677878d976f41b4b20c6ea6 /libiberty | |
parent | 965cec417884aea6ecada41cdc75902f91246ee7 (diff) | |
download | gcc-7bf407413f0d6b36bd1a799fea2d5863465dafed.tar.gz |
cplus-dem.c (gnu_special): Fix off-by-one bug when checking the length in the name of a virtual table.
* cplus-dem.c (gnu_special): Fix off-by-one bug when checking the
length in the name of a virtual table.
From-SVN: r19417
Diffstat (limited to 'libiberty')
-rw-r--r-- | libiberty/ChangeLog | 5 | ||||
-rw-r--r-- | libiberty/cplus-dem.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog index acd96f248eb..1b98c559f48 100644 --- a/libiberty/ChangeLog +++ b/libiberty/ChangeLog @@ -1,3 +1,8 @@ +Sun Apr 26 15:38:50 1998 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> + + * cplus-dem.c (gnu_special): Fix off-by-one bug when checking the + length in the name of a virtual table. + Wed Apr 22 10:53:49 EDT 1998 Andrew MacLeod <amacleod@cygnus.com> * cplus-dem.c (struct work stuff): Add field for B and K mangle codes. diff --git a/libiberty/cplus-dem.c b/libiberty/cplus-dem.c index abc85bbe5d1..21e3b6e1e0d 100644 --- a/libiberty/cplus-dem.c +++ b/libiberty/cplus-dem.c @@ -2003,7 +2003,7 @@ gnu_special (work, mangled, declp) ".<digits>" indicating a static local symbol. In any case, declare victory and move on; *don't* try to use n to allocate. */ - if (n >= strlen (*mangled)) + if (n > strlen (*mangled)) { success = 1; break; |