mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-26 05:56:14 +01:00
fuzzing: Add more parsing flags to the GKeyFile test
To increase the coverage. Signed-off-by: Philip Withnall <pwithnall@endlessos.org>
This commit is contained in:
parent
b108072d9e
commit
0c83f05be8
@ -1,16 +1,27 @@
|
|||||||
#include "fuzz.h"
|
#include "fuzz.h"
|
||||||
|
|
||||||
int
|
static void
|
||||||
LLVMFuzzerTestOneInput (const unsigned char *data, size_t size)
|
test_parse (const gchar *data,
|
||||||
|
size_t size,
|
||||||
|
GKeyFileFlags flags)
|
||||||
{
|
{
|
||||||
GKeyFile *key = NULL;
|
GKeyFile *key = NULL;
|
||||||
|
|
||||||
fuzz_set_logging_func ();
|
|
||||||
|
|
||||||
key = g_key_file_new ();
|
key = g_key_file_new ();
|
||||||
g_key_file_load_from_data (key, (const gchar*) data, size, G_KEY_FILE_NONE,
|
g_key_file_load_from_data (key, (const gchar*) data, size, G_KEY_FILE_NONE,
|
||||||
NULL);
|
NULL);
|
||||||
|
|
||||||
g_key_file_free (key);
|
g_key_file_free (key);
|
||||||
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
LLVMFuzzerTestOneInput (const unsigned char *data, size_t size)
|
||||||
|
{
|
||||||
|
fuzz_set_logging_func ();
|
||||||
|
|
||||||
|
test_parse ((const gchar *) data, size, G_KEY_FILE_NONE);
|
||||||
|
test_parse ((const gchar *) data, size, G_KEY_FILE_KEEP_COMMENTS);
|
||||||
|
test_parse ((const gchar *) data, size, G_KEY_FILE_KEEP_TRANSLATIONS);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user