Free a fileobject structure */
| 314 | |
| 315 | /* Free a fileobject structure */ |
| 316 | static void free_fo(struct fileobject *fo) |
| 317 | { |
| 318 | if (fo) { |
| 319 | free(fo->data); |
| 320 | free(fo); |
| 321 | } |
| 322 | } |
| 323 | |
| 324 | /* Resize file object and keep memory content */ |
| 325 | static struct fileobject *remalloc_fo(struct fileobject *old, |
no test coverage detected