/src/fuzz_key.c
Line
Count
Source
1
#include "glib/glib.h"
2
#include <stdint.h>
3
4
6.01k
int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
5
g_autoptr(GKeyFile) keyfile = g_key_file_new();
6
g_key_file_load_from_data(keyfile, (const gchar*)data, size, 0, NULL);
7
return 0;
8
}