Message ID | 1d5cfbbc47a36e1f94d8432900da064a15c61b2d.1643051624.git.gitgitgadget@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 049cdbb059c28051fb96e1aba56558acf4b597a2 |
Headers | show |
Series | Reftable coverity fixes | expand |
diff --git a/reftable/record.c b/reftable/record.c index 1f236b47d1c..53d83e4a41a 100644 --- a/reftable/record.c +++ b/reftable/record.c @@ -1154,9 +1154,11 @@ int reftable_ref_record_equal(struct reftable_ref_record *a, struct reftable_ref_record *b, int hash_size) { assert(hash_size > 0); - if (!(0 == strcmp(a->refname, b->refname) && - a->update_index == b->update_index && - a->value_type == b->value_type)) + if (!null_streq(a->refname, b->refname)) + return 0; + + if (a->update_index != b->update_index || + a->value_type != b->value_type) return 0; switch (a->value_type) {