| 652 | } |
| 653 | |
| 654 | static void application_recovery_files_remove(const char *marker_path, |
| 655 | const char *quarantine_path) { |
| 656 | if (marker_path && marker_path[0]) { |
| 657 | (void)cbm_unlink(marker_path); |
| 658 | } |
| 659 | if (quarantine_path && quarantine_path[0]) { |
| 660 | (void)cbm_unlink(quarantine_path); |
| 661 | } |
| 662 | } |
| 663 | |
| 664 | static bool application_truncate_file(const char *path) { |
| 665 | FILE *file = cbm_fopen(path, "wb"); |
no test coverage detected