mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-04-14 19:48:05 +02: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"
|
#include "fuzz.h"
|
||||||
|
|
||||||
int
|
static void
|
||||||
LLVMFuzzerTestOneInput (const unsigned char *data, size_t size)
|
test_with_flags (const gchar *data,
|
||||||
|
GUriFlags flags)
|
||||||
{
|
{
|
||||||
unsigned char *nul_terminated_data = NULL;
|
|
||||||
GUri *uri = NULL;
|
GUri *uri = NULL;
|
||||||
gchar *uri_string = NULL;
|
gchar *uri_string = NULL;
|
||||||
const GUriFlags flags = G_URI_FLAGS_NONE;
|
|
||||||
|
|
||||||
fuzz_set_logging_func ();
|
uri = g_uri_parse (data, flags, NULL);
|
||||||
|
|
||||||
/* 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);
|
|
||||||
|
|
||||||
if (uri == NULL)
|
if (uri == NULL)
|
||||||
return 0;
|
return;
|
||||||
|
|
||||||
uri_string = g_uri_to_string (uri);
|
uri_string = g_uri_to_string (uri);
|
||||||
g_uri_unref (uri);
|
g_uri_unref (uri);
|
||||||
|
|
||||||
if (uri_string == NULL)
|
if (uri_string == NULL)
|
||||||
return 0;
|
return;
|
||||||
|
|
||||||
g_free (uri_string);
|
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;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user