Skip to content

Commit

Permalink
Support SQUASHFS_LSYMLINK_TYPE
Browse files Browse the repository at this point in the history
  • Loading branch information
probonopd authored and TheAssassin committed Dec 8, 2018
1 parent 9d9d18e commit 6e8e2eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/runtime.c
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ bool extract_appimage(const char* const appimage_path, const char* const _prefix
if (!rv)
break;
}
} else if (inode.base.inode_type == SQUASHFS_SYMLINK_TYPE) {
} else if (inode.base.inode_type == SQUASHFS_SYMLINK_TYPE || inode.base.inode_type == SQUASHFS_LSYMLINK_TYPE) {
size_t size;
sqfs_readlink(&fs, &inode, NULL, &size);
char buf[size];
Expand Down

0 comments on commit 6e8e2eb

Please sign in to comment.