| 8 | } |
| 9 | |
| 10 | void run(const uint8_t *data, size_t size) |
| 11 | { |
| 12 | char *string; |
| 13 | struct descriptor_checksum checksum; |
| 14 | |
| 15 | /* We should not crash nor overflow the checksum buffer. */ |
| 16 | |
| 17 | string = to_string(NULL, data, size); |
| 18 | descriptor_checksum(string, tal_count(string), &checksum); |
| 19 | tal_free(string); |
| 20 | } |
nothing calls this directly
no test coverage detected