| 1279 | } |
| 1280 | |
| 1281 | static struct object_list **add_one_object(struct object *obj, struct object_list **p) |
| 1282 | { |
| 1283 | struct object_list *entry = xmalloc(sizeof(struct object_list)); |
| 1284 | entry->item = obj; |
| 1285 | entry->next = *p; |
| 1286 | *p = entry; |
| 1287 | return &entry->next; |
| 1288 | } |
| 1289 | |
| 1290 | static struct object_list **process_blob(struct blob *blob, |
| 1291 | struct object_list **p) |
no test coverage detected