From d2ae9c847a107449b04d81f50ba6c6ba7e81ad2a Mon Sep 17 00:00:00 2001 From: Pierre Muller Date: Thu, 30 Sep 2010 11:32:15 +0000 Subject: * s390-mkopc.c (main): Change description array size to 80. Add maximum length of 79 to description parsing. --- opcodes/s390-mkopc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'opcodes/s390-mkopc.c') diff --git a/opcodes/s390-mkopc.c b/opcodes/s390-mkopc.c index 84981cc..d4cf3c9 100644 --- a/opcodes/s390-mkopc.c +++ b/opcodes/s390-mkopc.c @@ -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) { -- cgit v1.1