|
@@ -4,11 +4,13 @@
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
*/
|
|
|
|
|
|
|
|
+#include <AK/Format.h>
|
|
#include <AK/StringView.h>
|
|
#include <AK/StringView.h>
|
|
#include <LibIMAP/QuotedPrintable.h>
|
|
#include <LibIMAP/QuotedPrintable.h>
|
|
|
|
|
|
extern "C" int LLVMFuzzerTestOneInput(uint8_t const* data, size_t size)
|
|
extern "C" int LLVMFuzzerTestOneInput(uint8_t const* data, size_t size)
|
|
{
|
|
{
|
|
|
|
+ AK::set_debug_enabled(false);
|
|
auto quoted_printable_string = StringView(static_cast<unsigned char const*>(data), size);
|
|
auto quoted_printable_string = StringView(static_cast<unsigned char const*>(data), size);
|
|
(void)IMAP::decode_quoted_printable(quoted_printable_string);
|
|
(void)IMAP::decode_quoted_printable(quoted_printable_string);
|
|
return 0;
|
|
return 0;
|