On Fri, Jun 11, 2010 at 2:31 AM, Nazri Ramliy [off-list ref] wrote:
(!textconv_two && diff_filespec_is_binary(two)) )) {
if (fill_mmfile(&mf1, one) < 0 || fill_mmfile(&mf2, two) < 0)
die("unable to read files to diff");
+ fprintf(o->file, "%s", header.buf);
+ strbuf_reset(&header);
Since the fill_mmfile()s could result in a die maybe it's
better if the header is printed before the read attempt?:
(!textconv_two && diff_filespec_is_binary(two)) )) {
+ fprintf(o->file, "%s", header.buf);
+ strbuf_reset(&header);
if (fill_mmfile(&mf1, one) < 0 || fill_mmfile(&mf2, two) < 0)
die("unable to read files to diff");
I did this on my work tree and ran 'make' in the test directory and no errors
were reported.
nazri.