Coverage Report

Created: 2018-09-25 13:52

/src/fuzz_bookmark.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
6.01k
  g_autoptr(GBookmarkFile) bookmarkfile = g_bookmark_file_new();
6
6.01k
  g_bookmark_file_load_from_data(bookmarkfile, (const gchar*)data, size, NULL);
7
6.01k
  return 0;
8
6.01k
}