mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-08 10:26:16 +01:00
Merge branch 'ossfuzz-fix-again' into 'master'
fuzzing: Another fix for g_uri_parse() test See merge request GNOME/glib!1556
This commit is contained in:
commit
f77c75a1bb
@ -1,30 +1,38 @@
|
||||
#include "fuzz.h"
|
||||
|
||||
int
|
||||
LLVMFuzzerTestOneInput (const unsigned char *data, size_t size)
|
||||
static void
|
||||
test_with_flags (const gchar *data,
|
||||
GUriFlags flags)
|
||||
{
|
||||
unsigned char *nul_terminated_data = NULL;
|
||||
GUri *uri = NULL;
|
||||
gchar *uri_string = NULL;
|
||||
const GUriFlags flags = G_URI_FLAGS_NONE;
|
||||
|
||||
fuzz_set_logging_func ();
|
||||
|
||||
/* ignore @size (g_uri_parse() doesn’t support it); ensure @data is nul-terminated */
|
||||
nul_terminated_data = (unsigned char *) g_strndup ((const gchar *) data, size);
|
||||
uri = g_uri_parse ((const gchar *) data, flags, NULL);
|
||||
g_free (nul_terminated_data);
|
||||
uri = g_uri_parse (data, flags, NULL);
|
||||
|
||||
if (uri == NULL)
|
||||
return 0;
|
||||
return;
|
||||
|
||||
uri_string = g_uri_to_string (uri);
|
||||
g_uri_unref (uri);
|
||||
|
||||
if (uri_string == NULL)
|
||||
return 0;
|
||||
return;
|
||||
|
||||
g_free (uri_string);
|
||||
}
|
||||
|
||||
int
|
||||
LLVMFuzzerTestOneInput (const unsigned char *data, size_t size)
|
||||
{
|
||||
unsigned char *nul_terminated_data = NULL;
|
||||
|
||||
fuzz_set_logging_func ();
|
||||
|
||||
/* ignore @size (g_uri_parse() doesn’t support it); ensure @data is nul-terminated */
|
||||
nul_terminated_data = (unsigned char *) g_strndup ((const gchar *) data, size);
|
||||
test_with_flags ((const gchar *) nul_terminated_data, G_URI_FLAGS_NONE);
|
||||
test_with_flags ((const gchar *) nul_terminated_data, G_URI_FLAGS_PARSE_STRICT);
|
||||
g_free (nul_terminated_data);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user