"Eric W. Biederman" <ebiederm@xxxxxxxxxxxx> writes: > + struct strbuf sig = STRBUF_INIT, compat_sig = STRBUF_INIT; > + struct object_id *parent_buf = NULL; > + struct object_id compat_oid = {}; Ditto. struct object_id compat_oid = { 0 }; would be our zero-initialization convention. Thanks.