* s390-mkopc.c (main): Change description array size to 80.

Add maximum length of 79 to description parsing.
This commit is contained in:
Pierre Muller 2010-09-30 11:32:15 +00:00
parent e9e07ba6db
commit d2ae9c847a
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2010-09-28 Pierre Muller <muller@ics.u-strasbg.fr>
* s390-mkopc.c (main): Change description array size to 80.
Add maximum length of 79 to description parsing.
2010-09-27 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
* configure: Regenerate.

View File

@ -335,7 +335,7 @@ main (void)
char opcode[16];
char mnemonic[16];
char format[16];
char description[64];
char description[80];
char cpu_string[16];
char modes_string[16];
int min_cpu;
@ -345,7 +345,7 @@ main (void)
if (currentLine[0] == '#')
continue;
memset (opcode, 0, 8);
if (sscanf (currentLine, "%15s %15s %15s \"%[^\"]\" %15s %15s",
if (sscanf (currentLine, "%15s %15s %15s \"%79[^\"]\" %15s %15s",
opcode, mnemonic, format, description,
cpu_string, modes_string) == 6)
{