From f9bc4d236ffa004b5dedbaf2cb4367cd30dc87cb Mon Sep 17 00:00:00 2001 From: Mark Pizzolato Date: Sat, 11 Jun 2022 17:46:43 -0700 Subject: [PATCH] s3: Fix compiler warning about possible buffer overflow --- S3/s3_sys.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/S3/s3_sys.c b/S3/s3_sys.c index 878de1d9..6481233d 100644 --- a/S3/s3_sys.c +++ b/S3/s3_sys.c @@ -272,7 +272,7 @@ int32 printf_sym (FILE *of, char *strg, t_addr addr, uint32 *val, { int32 c1, c2, group, len1, len2, inst, aaddr, baddr; int32 oplen, groupno, i, j, vpos, qbyte, da, m, n; -char bld[128], bldaddr[96], boperand[32], aoperand[32]; +char bld[128], bldaddr[256], boperand[32], aoperand[32]; int32 blk[16], blt[16]; int32 blkadd;