diff --git a/FIXES b/FIXES index 9ec29c0..9cd8d15 100644 --- a/FIXES +++ b/FIXES @@ -25,6 +25,11 @@ THIS SOFTWARE. This file lists all bug fixes, changes, etc., made since the AWK book was sent to the printers in August, 1987. +September 10, 2019: + Fixes for various array / memory overruns found via gcc's + -fsanitize=unknown. Thanks to Alexander Richardson (Github + user arichardson). Merges PRs 47 and 48. + July 28, 2019: Import grammar optimization from NetBSD: Two string constants concatenated together get turned into a single string. diff --git a/main.c b/main.c index a910bc9..6ad7710 100644 --- a/main.c +++ b/main.c @@ -22,7 +22,7 @@ ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ****************************************************************/ -const char *version = "version 20190728"; +const char *version = "version 20190910"; #define DEBUG #include