Fix type-punning issues
authorDan McGee <dpmcgee@gmail.com>
Tue, 12 May 2009 01:17:38 +0000 (20:17 -0500)
committerJunio C Hamano <gitster@pobox.com>
Sun, 17 May 2009 05:41:18 +0000 (22:41 -0700)
In these two places we are casting part of our unsigned char sha1 array into
an unsigned int, which violates GCCs strict-aliasing rules (and probably
other compilers).

Signed-off-by: Dan McGee <dpmcgee@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
No differences found