| 350 | } |
| 351 | |
| 352 | static 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 | |
| 361 | struct input_zstream_data { |
| 362 | git_zstream *zstream; |
no test coverage detected