summaryrefslogtreecommitdiff
path: root/usr.bin/awk/FIXES
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2022-06-03 19:42:28 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2022-06-03 19:42:28 +0000
commite8c201f0e16fe9d819598b3983089d1423a8d297 (patch)
tree8cc1ee4c4d36c882614c6277e2c4409fbff6d59a /usr.bin/awk/FIXES
parent85b7799ea07c7cec372903199173becc6afdbd37 (diff)
The fulfillment of an assignment operand had been truncating its
entry in ARGV (since circa 1989). From Miguel Pineiro Jr.
Diffstat (limited to 'usr.bin/awk/FIXES')
-rw-r--r--usr.bin/awk/FIXES7
1 files changed, 6 insertions, 1 deletions
diff --git a/usr.bin/awk/FIXES b/usr.bin/awk/FIXES
index 17115123f0d..77fa8227e51 100644
--- a/usr.bin/awk/FIXES
+++ b/usr.bin/awk/FIXES
@@ -1,4 +1,4 @@
-/* $OpenBSD: FIXES,v 1.44 2022/06/03 19:40:56 millert Exp $ */
+/* $OpenBSD: FIXES,v 1.45 2022/06/03 19:42:27 millert Exp $ */
/****************************************************************
Copyright (C) Lucent Technologies 1997
All Rights Reserved
@@ -26,6 +26,11 @@ THIS SOFTWARE.
This file lists all bug fixes, changes, etc., made since the AWK book
was sent to the printers in August, 1987.
+Mar 14, 2022:
+ The fulfillment of an assignment operand had been truncating its
+ entry in ARGV (since circa 1989). Thanks to Miguel Pineiro Jr.
+ <mpj@pineiro.cc>.
+
Mar 3, 2022:
Fixed file management memory leak that appears to have been
there since the files array was first initialized with stdin,