diff options
Diffstat (limited to 'fuzzers')
-rw-r--r-- | fuzzers/objects_fuzzer.c | 2 | ||||
-rw-r--r-- | fuzzers/packfile_fuzzer.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/fuzzers/objects_fuzzer.c b/fuzzers/objects_fuzzer.c index a72355a6a..a1001edea 100644 --- a/fuzzers/objects_fuzzer.c +++ b/fuzzers/objects_fuzzer.c @@ -26,7 +26,7 @@ int LLVMFuzzerInitialize(int *argc, char ***argv) int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) { const git_otype types[] = { - GIT_OBJ_BLOB, GIT_OBJ_TREE, GIT_OBJ_COMMIT, GIT_OBJ_TAG + GIT_OBJECT_BLOB, GIT_OBJECT_TREE, GIT_OBJECT_COMMIT, GIT_OBJECT_TAG }; git_object *object = NULL; size_t i; diff --git a/fuzzers/packfile_fuzzer.c b/fuzzers/packfile_fuzzer.c index 6f453870b..e70c6c949 100644 --- a/fuzzers/packfile_fuzzer.c +++ b/fuzzers/packfile_fuzzer.c @@ -70,7 +70,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) } git_mempack_reset(mempack); - if (git_odb_write(&id, odb, base_obj, base_obj_len, GIT_OBJ_BLOB) < 0) { + if (git_odb_write(&id, odb, base_obj, base_obj_len, GIT_OBJECT_BLOB) < 0) { fprintf(stderr, "Failed to add an object to the odb\n"); abort(); } @@ -93,7 +93,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) goto cleanup; if (append_hash) { git_oid oid; - if (git_odb_hash(&oid, data, size, GIT_OBJ_BLOB) < 0) { + if (git_odb_hash(&oid, data, size, GIT_OBJECT_BLOB) < 0) { fprintf(stderr, "Failed to compute the SHA1 hash\n"); abort(); } |