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

Re: [PATCH] git-diff: fix combined diff

From: Jeff King <hidden>
Date: 2016-06-15 22:42:56

On Fri, Feb 23, 2007 at 05:20:32AM +0100, Johannes Schindelin wrote:
With "const unsigned (*parent)[20]", "parent + 1" is not the
same as "&parent[1]"...
Actually, they _are_ the same (the C standard definition of A[B] is *(A+B)).
The problem is the operator precedence of the cast:
-		hashcpy((unsigned char*)parent + i, ent[ents - 1 - i].item->sha1);
which translates to "cast parent to an unsigned char pointer, and then
add i * sizeof(unsigned char) to it".

Your fix works because [] binds more tightly, fixing the precedence
problem. You could also do this:
  hashcpy((unsigned char*)(parent + i), ...

-Peff
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help