summaryrefslogtreecommitdiff
path: root/Userland/Utilities/gunzip.cpp
AgeCommit message (Collapse)Author
2021-03-26gunzip: Fail gracefully on bad inputIdan Horowitz
Instead of crashing on a missing input file, looping forever on an invalid gzip compressed file, and crashing on permissions issues in the output file, handle all issues gracefully by logging and returning.
2021-03-12Everywhere: Remove klog(), dbg() and purge all LogStream usage :^)Andreas Kling
Good-bye LogStream. Long live AK::Format!
2021-02-23Everywhere: Rename ASSERT => VERIFYAndreas Kling
(...and ASSERT_NOT_REACHED => VERIFY_NOT_REACHED) Since all of these checks are done in release builds as well, let's rename them to VERIFY to prevent confusion, as everyone is used to assertions being compiled out in release. We can introduce a new ASSERT macro that is specifically for debug checks, but I'm doing this wholesale conversion first since we've accumulated thousands of these already, and it's not immediately obvious which ones are suitable for ASSERT.
2021-01-16Everywhere: Convert a handful of String::format() => formatted()Andreas Kling
2021-01-12Userland: Move command-line utilities to Userland/Utilities/Andreas Kling