MCPcopy Create free account
hub / github.com/git/git / bitmap_test_data_release

Function bitmap_test_data_release

pack-bitmap.c:2776–2789  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2774}
2775
2776static void bitmap_test_data_release(struct bitmap_test_data *tdata)
2777{
2778 if (!tdata)
2779 return;
2780
2781 bitmap_test_data_release(tdata->base_tdata);
2782 free(tdata->base_tdata);
2783
2784 bitmap_free(tdata->base);
2785 bitmap_free(tdata->commits);
2786 bitmap_free(tdata->trees);
2787 bitmap_free(tdata->blobs);
2788 bitmap_free(tdata->tags);
2789}
2790
2791void test_bitmap_walk(struct rev_info *revs)
2792{

Callers 1

test_bitmap_walkFunction · 0.85

Calls 1

bitmap_freeFunction · 0.85

Tested by 1

test_bitmap_walkFunction · 0.68