Integrate oss-fuzz targets

This commit is contained in:
pdknsk
2018-10-11 00:02:03 +00:00
committed by Philip Withnall
parent 6c8b9f31b1
commit a2c09f57f6
13 changed files with 268 additions and 0 deletions

15
fuzzing/fuzz_bookmark.c Normal file
View File

@@ -0,0 +1,15 @@
#include "fuzz.h"
int
LLVMFuzzerTestOneInput (const unsigned char *data, size_t size)
{
GBookmarkFile *bookmark = NULL;
fuzz_set_logging_func ();
bookmark = g_bookmark_file_new ();
g_bookmark_file_load_from_data (bookmark, (const gchar*) data, size, NULL);
g_bookmark_file_free (bookmark);
return 0;
}