On Mon, Jan 24 2022, Han-Wen Nienhuys via GitGitGadget wrote: > From: Han-Wen Nienhuys <hanwen@xxxxxxxxxx> > [...] > @@ -129,17 +130,25 @@ void reftable_iterator_destroy(struct reftable_iterator *it) > int reftable_iterator_next_ref(struct reftable_iterator *it, > struct reftable_ref_record *ref) > { > - struct reftable_record rec = { NULL }; > - reftable_record_from_ref(&rec, ref); > - return iterator_next(it, &rec); > + struct reftable_record rec = { > + .type = BLOCK_TYPE_REF, > + .u.ref = *ref, > + }; > + int err = iterator_next(it, &rec); > + *ref = rec.u.ref; > + return err; > } I didn't test the v6 on xlc on AIX 7.1, but found that it refuses to compile this code (but the one on AIX 7.2 is OK with it): "reftable/generic.c", line 135.26: 1506-196 (S) Initialization between types "char*" and "struct reftable_ref_record" is not allowed. "reftable/generic.c", line 147.26: 1506-196 (S) Initialization between types "char*" and "struct reftable_log_record" is not allowed. "reftable/writer.c", line 261.26: 1506-196 (S) Initialization between types "char*" and "struct reftable_ref_record" is not allowed. "reftable/writer.c", line 312.26: 1506-196 (S) Initialization between types "char*" and "struct reftable_log_record" is not allowed. "reftable/writer.c", line 406.45: 1506-196 (S) Initialization between types "unsigned long long" and "struct reftable_index_record" is not allowed. I.e. you're dereferencing a struct type here to get at its first member, I'm surprised that gcc and clang don't complain about it. I think that the below fix-up for this series as a whole (didn't check if it was just this patch) should fix it: diff --git a/reftable/generic.c b/reftable/generic.c index b176c1cde0a..fe8f060a689 100644 --- a/reftable/generic.c +++ b/reftable/generic.c @@ -132,7 +132,7 @@ int reftable_iterator_next_ref(struct reftable_iterator *it, { struct reftable_record rec = { .type = BLOCK_TYPE_REF, - .u.ref = *ref, + .u.ref = { ref->refname }, }; int err = iterator_next(it, &rec); *ref = rec.u.ref; @@ -144,7 +144,7 @@ int reftable_iterator_next_log(struct reftable_iterator *it, { struct reftable_record rec = { .type = BLOCK_TYPE_LOG, - .u.log = *log, + .u.log = { log->refname }, }; int err = iterator_next(it, &rec); *log = rec.u.log; diff --git a/reftable/record_test.c b/reftable/record_test.c index 847abfa2b04..be99de5194b 100644 --- a/reftable/record_test.c +++ b/reftable/record_test.c @@ -337,7 +337,7 @@ static void test_reftable_obj_record_roundtrip(void) }; struct reftable_record in = { .type = BLOCK_TYPE_OBJ, - .u.obj = recs[i], + .u.obj = { recs[i].hash_prefix }, }; struct strbuf key = STRBUF_INIT; struct reftable_record out = { .type = BLOCK_TYPE_OBJ }; diff --git a/reftable/writer.c b/reftable/writer.c index 5b768438625..6cc2ef9acaf 100644 --- a/reftable/writer.c +++ b/reftable/writer.c @@ -258,7 +258,7 @@ int reftable_writer_add_ref(struct reftable_writer *w, { struct reftable_record rec = { .type = BLOCK_TYPE_REF, - .u.ref = *ref, + .u.ref = { ref->refname }, }; int err = 0; @@ -309,7 +309,7 @@ static int reftable_writer_add_log_verbatim(struct reftable_writer *w, { struct reftable_record rec = { .type = BLOCK_TYPE_LOG, - .u.log = *log, + .u.log = { log->refname }, }; if (w->block_writer && block_writer_type(w->block_writer) == BLOCK_TYPE_REF) { @@ -403,7 +403,7 @@ static int writer_finish_section(struct reftable_writer *w) for (i = 0; i < idx_len; i++) { struct reftable_record rec = { .type = BLOCK_TYPE_INDEX, - .u.idx = idx[i], + .u.idx = { idx[i].offset }, }; if (block_writer_add(w->block_writer, &rec) == 0) { continue;