Thread (4 messages) flat view 4 messages, 2 authors, 2016-06-15

Re: [PATCH] diff: bugfix: binary file permission regression

From: Nazri Ramliy <hidden>
Date: 2016-06-15 22:48:57

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.
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help