Merge branch 'pt/pull-builtin' into maint
[gitweb.git] / test-dump-split-index.c
index 9cf3112c9d384c98e68b0fc2c10b5d83b5136c18..861d28c9b6c1b4d95f74ffbd95bc279ea0d377eb 100644 (file)
@@ -26,9 +26,11 @@ int main(int ac, char **av)
                       sha1_to_hex(ce->sha1), ce_stage(ce), ce->name);
        }
        printf("replacements:");
-       ewah_each_bit(si->replace_bitmap, show_bit, NULL);
+       if (si->replace_bitmap)
+               ewah_each_bit(si->replace_bitmap, show_bit, NULL);
        printf("\ndeletions:");
-       ewah_each_bit(si->delete_bitmap, show_bit, NULL);
+       if (si->delete_bitmap)
+               ewah_each_bit(si->delete_bitmap, show_bit, NULL);
        printf("\n");
        return 0;
 }