mirror of
https://github.com/RGBCube/serenity
synced 2025-05-22 20:25:07 +00:00

This fixes a few compiler warnings and makes some variables const-ref in preparation for the next commit which changes how ByteBuffer works.
21 lines
531 B
C++
21 lines
531 B
C++
/*
|
|
* Copyright (c) 2020, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibHTTP/HttpRequest.h>
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size)
|
|
{
|
|
auto request_wrapper = HTTP::HttpRequest::from_raw_request(ReadonlyBytes { data, size });
|
|
if (!request_wrapper.has_value())
|
|
return 1;
|
|
|
|
auto& request = request_wrapper.value();
|
|
VERIFY(request.method() != HTTP::HttpRequest::Method::Invalid);
|
|
|
|
return 0;
|
|
}
|