parent
bf29b2dd37
commit
af8a08e655
|
@ -5087,10 +5087,9 @@ parse_matrix(session_t *ps, const char *src, const char **endptr) {
|
||||||
printf_errf("(): Width/height not odd.");
|
printf_errf("(): Width/height not odd.");
|
||||||
goto parse_matrix_err;
|
goto parse_matrix_err;
|
||||||
}
|
}
|
||||||
if (wid > 16 || hei > 16) {
|
if (wid > 16 || hei > 16)
|
||||||
printf_errf("(): Matrix width/height too large.");
|
printf_errf("(): Matrix width/height too large, may slow down"
|
||||||
goto parse_matrix_err;
|
"rendering, and/or consume lots of memory");
|
||||||
}
|
|
||||||
|
|
||||||
// Allocate memory
|
// Allocate memory
|
||||||
matrix = calloc(wid * hei + 2, sizeof(XFixed));
|
matrix = calloc(wid * hei + 2, sizeof(XFixed));
|
||||||
|
|
Loading…
Reference in New Issue