off-by-one error killed !

This commit is contained in:
tonton th 2020-06-07 09:30:09 +02:00
父節點 ba01f62983
當前提交 233c1d5b9e
共有 2 個檔案被更改,包括 2 行新增2 行删除

查看文件

@ -139,7 +139,7 @@ fprintf(stderr, "%s : %p --> %p\n", __func__, what, where);
fprintf(stderr, "XYZ %f %f %f\n", what->p.x, what->p.y, what->p.z);
#endif
if (where->fidx > where->size) {
if (where->fidx >= where->size) {
/* this is a very bad fatal error */
fprintf(stderr, "%s : overflow in BBList at %p\n", __func__, where);
#if MUST_ABORT

查看文件

@ -4,7 +4,7 @@
/* --------------------------------------------------------------------- */
#define LIBBB_VERSION 53
#define LIBBB_VERSION 54
#define SZ_BUBULLE_TEXT 51 /* arbitrary value */