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

Function unpack_non_delta_entry

builtin/unpack-objects.c:352–359  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

350}
351
352static void unpack_non_delta_entry(enum object_type type, unsigned long size,
353 unsigned nr)
354{
355 void *buf = get_data(size);
356
357 if (buf)
358 write_object(nr, type, buf, size);
359}
360
361struct input_zstream_data {
362 git_zstream *zstream;

Callers 1

unpack_oneFunction · 0.85

Calls 2

get_dataFunction · 0.85
write_objectFunction · 0.70

Tested by

no test coverage detected