From: torsten Date: Thu, 20 Aug 2009 08:32:31 +0000 (+0000) Subject: Warning fix: array subscript is above array bounds X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=918e315d47161e0e0d87a4b7c71dc0016d9530b9;p=simgear.git Warning fix: array subscript is above array bounds --- diff --git a/simgear/structure/exception.cxx b/simgear/structure/exception.cxx index 821ae324..accd9706 100644 --- a/simgear/structure/exception.cxx +++ b/simgear/structure/exception.cxx @@ -331,7 +331,7 @@ sg_format_exception::setText (const char* text) { if (text) { strncpy(_text, text, MAX_TEXT_LEN); - _text[MAX_TEXT_LEN] = '\0'; + _text[MAX_TEXT_LEN-1] = '\0'; } else { _text[0] = '\0'; }