aboutsummaryrefslogtreecommitdiff
path: root/mkfs
diff options
context:
space:
mode:
authorDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2020-02-12 02:22:31 +0100
committerDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2020-02-12 02:26:24 +0100
commit303680ebcd5adaac2934b63a0edc2d9d1a36d7fb (patch)
treebd2012dc6fa56f7259dbe2e5edd7ab3042f8e0a0 /mkfs
parentec7a522a520017327dd73b4d8e3787016ee1a31e (diff)
Implement a more explicit object system
Make every dynamically allocated, opaque data structure inherit from a common sqfs_object_t structure with common entry points (e.g. destroy). This removes tons of public API functions and replaces them with a simple sqfs_destroy instead. If semantics of the (until now implicit) object system need to be extended, it can be much more conveniantely done this way. Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'mkfs')
-rw-r--r--mkfs/mkfs.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mkfs/mkfs.c b/mkfs/mkfs.c
index 5e350c8..357dad7 100644
--- a/mkfs/mkfs.c
+++ b/mkfs/mkfs.c
@@ -96,7 +96,7 @@ static int pack_files(sqfs_block_processor_t *data, fstree_t *fs,
SZ_ADD_OV(sizeof(*inode), size, &size)) {
fputs("creating file inode: too many blocks\n",
stderr);
- file->destroy(file);
+ sqfs_destroy(file);
free(node_path);
return -1;
}
@@ -104,7 +104,7 @@ static int pack_files(sqfs_block_processor_t *data, fstree_t *fs,
inode = calloc(1, size);
if (inode == NULL) {
perror("creating file inode");
- file->destroy(file);
+ sqfs_destroy(file);
free(node_path);
return -1;
}
@@ -121,7 +121,7 @@ static int pack_files(sqfs_block_processor_t *data, fstree_t *fs,
flags |= SQFS_BLK_DONT_FRAGMENT;
ret = write_data_from_file(path, data, inode, file, flags);
- file->destroy(file);
+ sqfs_destroy(file);
free(node_path);
if (ret)