summaryrefslogtreecommitdiff
path: root/fuzzing/fuzz_network_address_parse_uri.c
blob: ea51133632537c614daeb33bc1c1898be748638e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#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_uri() 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_uri ((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;
}