blob: 16e846b81c998648ece70f5d727a81618834eec5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
/* SPDX-License-Identifier: GPL-3.0-or-later */
/*
* cleanup.c
*
* Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
*/
#include "simple_writer.h"
#include <stdlib.h>
void sqfs_writer_cleanup(sqfs_writer_t *sqfs, int status)
{
if (sqfs->xwr != NULL)
sqfs_destroy(sqfs->xwr);
sqfs_destroy(sqfs->dirwr);
sqfs_destroy(sqfs->dm);
sqfs_destroy(sqfs->im);
sqfs_destroy(sqfs->idtbl);
sqfs_destroy(sqfs->data);
sqfs_destroy(sqfs->blkwr);
sqfs_destroy(sqfs->fragtbl);
sqfs_destroy(sqfs->cmp);
fstree_cleanup(&sqfs->fs);
sqfs_destroy(sqfs->outfile);
if (status != EXIT_SUCCESS) {
#if defined(_WIN32) || defined(__WINDOWS__)
WCHAR *path = path_to_windows(sqfs->filename);
if (path != NULL)
DeleteFileW(path);
free(path);
#else
unlink(sqfs->filename);
#endif
}
}
|