diff options
author | Hans-Peter Nilsson <hp@axis.com> | 2002-11-11 08:42:52 +0000 |
---|---|---|
committer | Hans-Peter Nilsson <hp@axis.com> | 2002-11-11 08:42:52 +0000 |
commit | 9df59bba97f148fbc5b85735cad107fddcf16ee4 (patch) | |
tree | 288131ff6137bc6bb2a80d87f1a3dc153c354272 | |
parent | daa3eaaf8ca9e7e317ecd725f6ea841d1f4aac7b (diff) | |
download | gdb-9df59bba97f148fbc5b85735cad107fddcf16ee4.zip gdb-9df59bba97f148fbc5b85735cad107fddcf16ee4.tar.gz gdb-9df59bba97f148fbc5b85735cad107fddcf16ee4.tar.bz2 |
* macro.c (get_any_string): Correct logic for not going beyond end
of in->ptr[].
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/macro.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 4f25aae..e4e95b5 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2002-11-11 Hans-Peter Nilsson <hp@bitrange.com> + + * macro.c (get_any_string): Correct logic for not going beyond end + of in->ptr[]. + 2002-11-10 Hans-Peter Nilsson <hp@bitrange.com> * config/tc-mmix.c (get_putget_operands): Mark both possible diff --git a/gas/macro.c b/gas/macro.c index 0842431..3f2aaf6 100644 --- a/gas/macro.c +++ b/gas/macro.c @@ -366,7 +366,7 @@ get_any_string (idx, in, out, expand, pretend_quoted) if (idx < in->len) { - if (in->len > 2 && in->ptr[idx + 1] == '\'' && ISBASE (in->ptr[idx])) + if (in->len > idx + 2 && in->ptr[idx + 1] == '\'' && ISBASE (in->ptr[idx])) { while (!ISSEP (in->ptr[idx])) sb_add_char (out, in->ptr[idx++]); |