* config/tc-z8k.c (md_assemble): Fix buffer overrun in operand[]

array.
This commit is contained in:
Christian Groessler 2005-04-21 20:03:57 +00:00
parent 78a0fd579c
commit d8cbebfd34
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2005-04-21 Christian Groessler <chris@groessler.org>
* config/tc-z8k.c (md_assemble): Fix buffer overrun in operand[]
array.
2005-04-20 H.J. Lu <hongjiu.lu@intel.com>
* config/obj-aout.h (S_IS_EXTERN): Removed.

View file

@ -1182,7 +1182,7 @@ md_assemble (char *str)
char c;
char *op_start;
char *op_end;
struct z8k_op operand[3];
struct z8k_op operand[4];
opcode_entry_type *opcode;
/* Drop leading whitespace. */