Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2023-12-31awk: fix handling of empty fieldsDenys Vlasenko
2023-10-02awk: implement -E; do not reorder -f and -eDenys Vlasenko
2023-07-10Update applet size estimatesDenys Vlasenko
2023-06-08awk: fix subst code to handle "start of word" pattern correctly (needs REG_ST...Denys Vlasenko
2023-06-07awk: fix SEGV on read error in -f PROGFILEDenys Vlasenko
2023-06-06awk: code shrinkDenys Vlasenko
2023-06-03awk: fix backslash handling in sub() builtinsDenys Vlasenko
2023-05-30awk: fix precedence of = relative to ==Denys Vlasenko
2023-05-29awk: printf(INVALID_FMT) prints it verbatimDenys Vlasenko
2023-05-28awk: shrink - use setvar_sn() to set variables from non-NUL terminated stringsDenys Vlasenko
2023-05-28awk: code shrinkDenys Vlasenko
2023-05-28awk: fix closing of non-opened fileDenys Vlasenko
2023-05-27awk: do not read ARGIND, only set it (gawk compat)Denys Vlasenko
2023-05-27awk: remove a local variable "caching" a struct memberDenys Vlasenko
2023-05-27awk: get rid of one indirection level for iF (input file structure)Denys Vlasenko
2023-05-27awk: fix splitting with default FSDenys Vlasenko
2023-05-26awk: fix use-after-realloc (CVE-2021-42380), closes 15601Denys Vlasenko
2022-07-11awk: fix use after free (CVE-2022-30065)Natanael Copa
2022-01-09awk: input numbers are never octal or hex (only program consts can be)Denys Vlasenko
2021-09-09awk: never return NULL from awk_printf()Denys Vlasenko
2021-09-09awk: code shrinkDenys Vlasenko
2021-09-09awk: code shrink: avoid duplicate NUL checks and strlen()Denys Vlasenko
2021-09-09awk: fix read beyond end of bufferRon Yorston
2021-09-05awk: fix printf %%Daniel Thau
2021-07-14awk: whitespace and debugging tweaksDenys Vlasenko
2021-07-14awk: disallow break/continue outside of loopsDenys Vlasenko
2021-07-14awk: tighten parsing - disallow extra semicolonsDenys Vlasenko
2021-07-12awk: in parsing, remove superfluous NEWLINE check; optimize builtin arg evalu...Denys Vlasenko
2021-07-12awk: fix printf "%-10c", 0Denys Vlasenko
2021-07-11awk: fix corner case in awk_printfDenys Vlasenko
2021-07-11awk: unbreak "cmd" | getlineDenys Vlasenko
2021-07-11awk: unbreak "printf('%c') can output NUL" testcaseDenys Vlasenko
2021-07-11awk: undo TI_PRINT, it introduced a bug (print with any redirect acting as pr...Denys Vlasenko
2021-07-11awk: rollback_token() + chain_group() == chain_until_rbrace()Denys Vlasenko
2021-07-04awk: fix printf buffer overflowDenys Vlasenko
2021-07-03awk: simplify tests for operation classDenys Vlasenko
2021-07-03awk: restore strdup elision optimization in assignmentDenys Vlasenko
2021-07-03awk: match(): code shrinkDenys Vlasenko
2021-07-03awk: rand(): 64-bit constants should be ULLDenys Vlasenko
2021-07-03awk: do not use a copy of g_progname for node->l.new_prognameDenys Vlasenko
2021-07-03awk: support %F %a %A in printfDenys Vlasenko
2021-07-03awk: open-code TS_OPTERM, no logic changesDenys Vlasenko
2021-07-03awk: tighten rules in action parsingDenys Vlasenko
2021-07-03awk: rename GRPSTART/END to L/RBRACE, no code changesDenys Vlasenko
2021-07-03awk: move match() code out-of-lineDenys Vlasenko
2021-07-03awk: use smaller regmatch_t arrays, they had 2 elements for no apparent reasonDenys Vlasenko
2021-07-03awk: fix detection of VAR=VAL argumentsDenys Vlasenko
2021-07-02awk: fix beavior of "exit" without parameterDenys Vlasenko
2021-07-02awk: rand() could return 1.0, fix this - should be in [0,1)Denys Vlasenko
2021-07-02awk: beautify builtins table, no code changesDenys Vlasenko