Fix some sparse warnings
authorRamsay Jones <ramsay@ramsay1.demon.co.uk>
Thu, 18 Jul 2013 20:25:50 +0000 (21:25 +0100)
committerJunio C Hamano <gitster@pobox.com>
Thu, 18 Jul 2013 23:43:47 +0000 (16:43 -0700)
Sparse issues some "Using plain integer as NULL pointer" warnings.
Each warning relates to the use of an '{0}' initialiser expression
in the declaration of an 'struct object_info'. The first field of
this structure has pointer type. Thus, in order to suppress these
warnings, we replace the initialiser expression with '{NULL}'.

Signed-off-by: Ramsay Jones <ramsay@ramsay1.demon.co.uk>
Acked-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
sha1_file.c
streaming.c
index 2500b94478bcbef05dba8eb989572ec720c5ecf9..452e4647b387799ebed343b100236b1cba9b0104 100644 (file)
@@ -2477,7 +2477,7 @@ int sha1_object_info_extended(const unsigned char *sha1, struct object_info *oi)
 int sha1_object_info(const unsigned char *sha1, unsigned long *sizep)
 {
        enum object_type type;
-       struct object_info oi = {0};
+       struct object_info oi = {NULL};
 
        oi.typep = &type;
        oi.sizep = sizep;
index 870657ab5643baac23bbc4ce2a2a073a14299a5f..acc07a6ff10cbd951945be56217e52b219661414 100644 (file)
@@ -135,7 +135,7 @@ struct git_istream *open_istream(const unsigned char *sha1,
                                 struct stream_filter *filter)
 {
        struct git_istream *st;
-       struct object_info oi = {0};
+       struct object_info oi = {NULL};
        const unsigned char *real = lookup_replace_object(sha1);
        enum input_source src = istream_source(real, type, &oi);