Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-07-03 | LibC: Replace Berkley's qsort() with AK::dual_pivot_quick_sort() wrapper | Sahan Fernando | |
2020-05-11 | LibC: strtod accuracy tests no longer need to skip | Ben Wiederhake | |
2020-05-11 | LibC: Demonstrate strtod inaccuracy | Ben Wiederhake | |
See also #1979. | |||
2020-02-01 | LibC: The exec() family of functions should not search "." by default | Andreas Kling | |
We should only execute the filename verbatim if it contains a slash (/) character somewhere. Otherwise, we need to look through the entries in the PATH environment variable. This fixes an issue where you could easily "override" system programs by placing them in a directory you control, and then waiting for someone to come there and run e.g "ls" :^) Test: LibC/exec-should-not-search-current-directory.cpp |