From cb94cf4007678d180a0f126d95ec2062ef4757e3 Mon Sep 17 00:00:00 2001 From: Matthias Rustler Date: Sat, 8 Feb 2025 15:38:44 +0100 Subject: [PATCH] increase array size by one to avoid writing above the array limit. --- workbench/utilities/MultiView/misc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/workbench/utilities/MultiView/misc.c b/workbench/utilities/MultiView/misc.c index 9e800facbd0..020e552d899 100644 --- a/workbench/utilities/MultiView/misc.c +++ b/workbench/utilities/MultiView/misc.c @@ -1,5 +1,5 @@ /* - Copyright © 1995-2020, The AROS Development Team. All rights reserved. + Copyright � 1995-2020, The AROS Development Team. All rights reserved. $Id$ */ @@ -392,7 +392,7 @@ void About(void) struct EasyStruct es; struct DTClassInfo *classInfo; char *fmtTemplate; - int count = 12, tmplLen; + int count = 13, tmplLen; IPTR *abouttxt; WORD i = 0;