summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authorAkim Demaille <akim.demaille@gmail.com>2020-07-19 16:05:15 +0200
committerAkim Demaille <akim.demaille@gmail.com>2020-07-19 17:09:01 +0200
commit744da03955fc60a6d2055cc4213d0853f587cafc (patch)
tree66eac26e3b1dd5e89fb694c0cce4860aafa235c6 /NEWS
parentb28d67b6b02d921a8d42427304afe1e2ae93b39c (diff)
downloadbison-744da03955fc60a6d2055cc4213d0853f587cafc.tar.gz
glyphs: fix types
The code was written on top of buffers of `char[26]`, and then was changed to use `char *`, yet was still using `sizeof buf`, which became `sizeof (char *)` instead of `sizeof (char[26])`. Reported by Dagobert Michelsen. https://lists.gnu.org/r/bug-bison/2020-07/msg00023.html * src/glyphs.h, src/glyphs.c: Get rid of uses of `char *`, use only glyph_buffer_t.
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 8a0b7b4f..b6afc208 100644
--- a/NEWS
+++ b/NEWS
@@ -2,6 +2,10 @@ GNU Bison NEWS
* Noteworthy changes in release ?.? (????-??-??) [?]
+** Bug fixes
+
+ Portability issues.
+
* Noteworthy changes in release 3.6.92 (2020-07-19) [beta]