| 22 | } |
| 23 | |
| 24 | int LLVMFuzzerTestOneInput(const uint8_t *data, const size_t size) |
| 25 | { |
| 26 | struct config_options config_opts = { 0 }; |
| 27 | |
| 28 | config_opts.error_action = CONFIG_ERROR_SILENT; |
| 29 | git_config_from_mem(config_parser_callback, CONFIG_ORIGIN_BLOB, |
| 30 | "fuzztest-config", (const char *)data, size, NULL, |
| 31 | CONFIG_SCOPE_UNKNOWN, &config_opts); |
| 32 | return 0; |
| 33 | } |
nothing calls this directly
no test coverage detected