summaryrefslogtreecommitdiff
path: root/fuzzing/fuzz_inet_address_new_from_string.c
Commit message (Collapse)AuthorAgeFilesLines
* fuzzing: Add copyright/licensing headers to fuzzing filesPhilip Withnall2022-05-181-0/+19
| | | | | | | | | | | | | | | | | | The files have only been touched by a subset of three people: pdknsk, Philip Withnall, and Marc-André Lureau. Their copyrights are assigned to pdknsk, Endless OS Foundation and Red Hat. The default license for GLib at the time of writing these files was (and still is) LGPL-2.1-or-later. `driver.c` came from LLVM and is under a different license: https://github.com/llvm/llvm-project/blob/main/compiler-rt/lib/fuzzer/standalone/StandaloneFuzzTargetMain.c. That doesn’t affect the license of GLib overall, since it’s only used for testing during development. Signed-off-by: Philip Withnall <pwithnall@endlessos.org> Helps: #1415
* fuzzing: Add more fuzzing tests for various string parsing functionsPhilip Withnall2020-12-081-0/+25
There’s no explicit guarantee that any of these functions are safe to use on untrusted data, but it does no harm to test them. Signed-off-by: Philip Withnall <pwithnall@endlessos.org>