Hi Ram,
On Tue, Aug 2, 2011 at 6:54 AM, Ramkumar Ramachandra [off-list ref] wrote:
if (get_sha1(sha1_abbrev, commit_sha1) < 0)
return NULL;
- return lookup_commit_reference(commit_sha1);
+ commit = lookup_commit_reference(commit_sha1);
+ if (commit) {
+ insn = xmalloc(sizeof(struct replay_insn));
+ insn->commit = commit;
+ insn->action = action;
+ return insn;
+ }
+ return NULL;
}
I'd suggest:
commit = lookup_commit_reference(commit_sha1);
if (!commit)
return NULL;
insn = xmalloc(sizeof(struct replay_insn));
insn->commit = commit;
insn->action = action;
return insn;
Thanks,
Christian.