|
From: <kin...@us...> - 2023-07-08 12:31:07
|
Revision: 7058
http://sourceforge.net/p/teem/code/7058
Author: kindlmann
Date: 2023-07-08 12:30:58 +0000 (Sat, 08 Jul 2023)
Log Message:
-----------
fixing sloppy propagation of AIR_STRLEN --> AIR_STRLEN+1
Modified Paths:
--------------
teem/trunk/src/ten/miscTen.c
Modified: teem/trunk/src/ten/miscTen.c
===================================================================
--- teem/trunk/src/ten/miscTen.c 2023-07-08 12:25:44 UTC (rev 7057)
+++ teem/trunk/src/ten/miscTen.c 2023-07-08 12:30:58 UTC (rev 7058)
@@ -233,7 +233,7 @@
return 1;
}
if (!(minnum <= nbmat->axis[1].size)) {
- char stmp[AIR_STRLEN_SMALL];
+ char stmp[AIR_STRLEN_SMALL + 1];
biffAddf(TEN, "%s: have only %s B-matrices, need at least %d", me,
airSprintSize_t(stmp, nbmat->axis[1].size), minnum);
return 1;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|