]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix off-by-1 bug in --enable-checking=stringbytes
authorPaul Eggert <eggert@cs.ucla.edu>
Fri, 10 Nov 2017 23:16:50 +0000 (15:16 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Fri, 10 Nov 2017 23:44:04 +0000 (15:44 -0800)
Evidently nobody builds Emacs with --enable-checking=all,
which is no surprise as it is so slow as to be unusable nowadays.
Perhaps we should remove the slowest checks, or move them into
another category, or speed them up, or something.
* src/alloc.c (SDATA_SIZE) [GC_CHECK_STRING_BYTES]: Fix off-by-one
error in size calculation, which caused a failure when
--enable-checking=stringbytes was used.  I introduced this bug in
2016-09-08T01:08:45!eggert@cs.ucla.edu "Port flexible array
members to GCC + valgrind".

src/alloc.c

index 0fc79fe68ac2fc4f0112f7aa5ec6a260e86ebeaa..5a44d7a9fc25e44e3ae02bf1bc049450ef72bfed 100644 (file)
@@ -1760,7 +1760,7 @@ static char const string_overrun_cookie[GC_STRING_OVERRUN_COOKIE_SIZE] =
 
 #ifdef GC_CHECK_STRING_BYTES
 
-#define SDATA_SIZE(NBYTES) FLEXSIZEOF (struct sdata, data, NBYTES)
+#define SDATA_SIZE(NBYTES) FLEXSIZEOF (struct sdata, data, (NBYTES) + 1)
 
 #else /* not GC_CHECK_STRING_BYTES */