| 1371 | } |
| 1372 | |
| 1373 | static void *pre_push_hook_data_alloc(void *feed_pipe_ctx) |
| 1374 | { |
| 1375 | struct feed_pre_push_hook_data *data; |
| 1376 | CALLOC_ARRAY(data, 1); |
| 1377 | strbuf_init(&data->buf, 0); |
| 1378 | data->refs = (struct ref *)feed_pipe_ctx; |
| 1379 | return data; |
| 1380 | } |
| 1381 | |
| 1382 | static void pre_push_hook_data_free(void *data) |
| 1383 | { |
nothing calls this directly
no test coverage detected