ref: 07cc7ca88a0a33f0aa15d9900d4bf0472a93ced1
parent: 821c502359855d0c43be8e9b08f037ecb543d310
author: ozan yigit <ozan.yigit@gmail.com>
date: Tue Aug 30 18:44:48 EDT 2022
updated FIXES and version.
--- a/FIXES
+++ b/FIXES
@@ -23,8 +23,11 @@
****************************************************************/
This file lists all bug fixes, changes, etc., made since the AWK book
-was sent to the printers in August, 1987.
+was sent to the printers in August 1987.
+Aug 30, 2022:
+ Various leaks and use-after-free issues plugged/fixed.
+ Thanks to Miguel Pineiro Jr. <mpj@pineiro.cc>.
May 23, 2022:
Memory leak when assigning a string to some of the built-in
@@ -326,7 +329,7 @@
#12: Avoid undefined behaviour when using ctype(3) functions in
relex(). Thanks to GitHub user iamleot.
#31: Make getline handle numeric strings, and update FIXES. Thanks
- to GitHub user arnoldrobbins.
+ to GitHub user Arnold Robbins (arnoldrobbins)
#32: maketab: support build systems with read-only source. Thanks
to GitHub user enh.
--- a/main.c
+++ b/main.c
@@ -22,7 +22,7 @@
THIS SOFTWARE.
****************************************************************/
-const char *version = "version 20220530";
+const char *version = "version 20220830";
#define DEBUG
#include <stdio.h>
--
⑨