mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-08 18:36:17 +01:00
26 lines
686 B
C
26 lines
686 B
C
|
#include "fuzz.h"
|
|||
|
|
|||
|
int
|
|||
|
LLVMFuzzerTestOneInput (const unsigned char *data, size_t size)
|
|||
|
{
|
|||
|
unsigned char *nul_terminated_data = NULL;
|
|||
|
GSocketConnectable *connectable = NULL;
|
|||
|
|
|||
|
fuzz_set_logging_func ();
|
|||
|
|
|||
|
/* ignore @size (g_network_address_parse() doesn’t support it); ensure @data is nul-terminated */
|
|||
|
nul_terminated_data = (unsigned char *) g_strndup ((const gchar *) data, size);
|
|||
|
connectable = g_network_address_parse ((const gchar *) nul_terminated_data, 1, NULL);
|
|||
|
g_free (nul_terminated_data);
|
|||
|
|
|||
|
if (connectable != NULL)
|
|||
|
{
|
|||
|
gchar *text = g_socket_connectable_to_string (connectable);
|
|||
|
g_free (text);
|
|||
|
}
|
|||
|
|
|||
|
g_clear_object (&connectable);
|
|||
|
|
|||
|
return 0;
|
|||
|
}
|