8000 oid none · libgit2/libgit2@09e301f · GitHub
[go: up one dir, main page]

Skip to content

Commit 09e301f

Browse files
committed
oid none
1 parent e10b0ad commit 09e301f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

fuzzers/commit_graph_fuzzer.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
3737
git_commit_graph_entry e;
3838
git_str commit_graph_buf = GIT_STR_INIT;
3939
unsigned char hash[GIT_HASH_SHA1_SIZE];
40-
git_oid oid = {0};
40+
git_oid oid = GIT_OID_NONE;
4141
bool append_hash = false;
4242

4343
if (size < 4)

fuzzers/midx_fuzzer.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
3636
git_midx_entry e;
3737
git_str midx_buf = GIT_STR_INIT;
3838
unsigned char hash[GIT_HASH_SHA1_SIZE];
39-
git_oid oid = {0};
39+
git_oid oid = GIT_OID_NONE;
4040
bool append_hash = false;
4141

4242
if (size < 4)

0 commit comments

Comments
 (0)
0