| 1288 | } |
| 1289 | |
| 1290 | static struct object_list **process_blob(struct blob *blob, |
| 1291 | struct object_list **p) |
| 1292 | { |
| 1293 | struct object *obj = &blob->object; |
| 1294 | |
| 1295 | obj->flags |= LOCAL; |
| 1296 | |
| 1297 | if (obj->flags & (UNINTERESTING | SEEN)) |
| 1298 | return p; |
| 1299 | |
| 1300 | obj->flags |= SEEN; |
| 1301 | return add_one_object(obj, p); |
| 1302 | } |
| 1303 | |
| 1304 | static struct object_list **process_tree(struct tree *tree, |
| 1305 | struct object_list **p) |
no test coverage detected