aboutsummaryrefslogtreecommitdiff
path: root/bugs-fixed
AgeCommit message (Collapse)Author
2020-12-18Inf and NaN values fixed and printing improved. "This time for sure!"Arnold D. Robbins
2020-07-29Avoid accessing pfile[] out of bounds on syntax error at EOF. (#90)Todd C. Miller
When awk reaches EOF parsing the program file, curpfile is incremented. However, cursource() uses curpfile without checking it against npfile which can cause an out of bounds access of pfile[] if there is a syntax error at the end of the program file.
2020-07-29Cast to uschar when storing a char in an int that will be used as an index (#88)Todd C. Miller
* Cast to uschar when storing a char in an int that will be used as an index. Fixes a heap underflow when the input char has the high bit set and FS is a regex. * Add regress test for underflow when RS is a regex and input is 8-bit.
2020-07-02Add regression script for bugs-fixed directory.Arnold D. Robbins
2019-01-26Simplify getline-numeric input and results.Arnold D. Robbins
2019-01-25Make getline POSIX compliant w.r.t. numeric strings.Arnold D. Robbins
2019-01-21Merge branch 'master' into nf-self-assignonetrueawk
2019-01-21Merge branch 'master' into split-fs-from-arrayonetrueawk
2019-01-21Merge branch 'master' into subseponetrueawk
2019-01-21Merge branch 'master' into assign-expronetrueawk
2019-01-21Merge branch 'master' into nf-self-assignonetrueawk
2019-01-21Merge branch 'master' into split-fs-from-arrayonetrueawk
2019-01-21Merge branch 'master' into subseponetrueawk
2019-01-21Merge branch 'master' into fmt-overflowonetrueawk
2019-01-21Merge branch 'master' into assign-expronetrueawk
2018-09-25Print an error message for negative NF valuesCody Peter Mello
2018-09-23Rebuild fields when NF is assigned to itselfCody Peter Mello
2018-09-23Handle numeric FS, RS, OFS, and ORS valuesCody Peter Mello
2018-09-18Fix calling split() with a third argument that lives in the target arrayCody Peter Mello
2018-09-17Fix issues with numeric SUBSEP and large SUBSEP valuesCody Peter Mello
2018-09-15Fix issues with assigning during concatenationCody Peter Mello
2018-09-14Protect against overflowing during OFMT/CONVFMT conversionsCody Peter Mello
2018-09-14Check for format character precision argument before using itCody Peter Mello
2018-08-22Fix multiple long-standing bugs, improve test suite.Arnold D. Robbins