|
From: Jun T. <tak...@kb...> - 2014-11-23 11:46:27
|
With the latest CVS, make check core dumps at pm3d.dem on my Mac.
This is due to the following change:
diff -u -r1.138 -r1.139
--- axis.c 11 Oct 2014 13:56:45 -0000 1.138
+++ axis.c 22 Nov 2014 00:25:17 -0000 1.139
@@ -249,7 +249,7 @@
{
static char name[] = "p ";
if (axis >= PARALLEL_AXES) {
- sprintf(name, "p%d", axis-PARALLEL_AXES+1);
+ sprintf(name, "paxis %d ", axis-PARALLEL_AXES+1);
return name;
}
return (char *)axis_defaults[axis].name;
name[] is only 4 bytes long (including the trailing null),
and too short for the format "paxis %d ".
Jun
|