mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-06 02:55:49 +03:00
28c99e7a1f
This also slightly improves error propagation in tar, unzip and zip.
23 lines
474 B
C++
23 lines
474 B
C++
/*
|
|
* Copyright (c) 2021, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibArchive/Zip.h>
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
extern "C" int LLVMFuzzerTestOneInput(uint8_t const* data, size_t size)
|
|
{
|
|
auto zip_file = Archive::Zip::try_create({ data, size });
|
|
if (!zip_file.has_value())
|
|
return 0;
|
|
|
|
(void)zip_file->for_each_member([](auto&) {
|
|
return IterationDecision::Continue;
|
|
});
|
|
|
|
return 0;
|
|
}
|