From 7a2e1a0a7a575c64eaf050c8ec08e5b36e4acfad Mon Sep 17 00:00:00 2001 From: David Oberhollenzer Date: Thu, 8 Apr 2021 12:04:33 +0200 Subject: Fix: libsquashfs: add sqfs_free() function On systems like Windows, the dynamic library and applications can easily end up being linked against different runtime libraries, so applications cannot be expected to be able to free() any malloc'd pointer that the library returns. This commit adds an sqfs_free function so the application can pass pointers back to the library to call the correct free() implementation. Signed-off-by: David Oberhollenzer --- bin/sqfs2tar/xattr.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'bin/sqfs2tar/xattr.c') diff --git a/bin/sqfs2tar/xattr.c b/bin/sqfs2tar/xattr.c index 9a9ec82..abec4fb 100644 --- a/bin/sqfs2tar/xattr.c +++ b/bin/sqfs2tar/xattr.c @@ -68,13 +68,13 @@ int get_xattrs(const char *name, const sqfs_inode_generic_t *inode, ret = sqfs_xattr_reader_read_value(xr, key, &value); if (ret) { sqfs_perror(name, "reading xattr value", ret); - free(key); + sqfs_free(key); goto fail; } ent = mkxattr(key, value); - free(key); - free(value); + sqfs_free(key); + sqfs_free(value); if (ent == NULL) goto fail; -- cgit v1.2.3