Skip to content

Commit

Permalink
GP-4603: Fixing problem with symbolic links in SquashFS
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanmkurtz committed May 16, 2024
1 parent 420f2f0 commit 27f59f1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ else if (inode.isSymLink()) {

// Store symlink as file. Lookup handled when getting ByteProvider
fsih.storeFileWithParent(entry.getFileName(), parentDir, symLinkInode.getNumber(),
false, 0, new SquashedFile(symLinkInode, null));
false, symLinkInode.getPath().length(), new SquashedFile(symLinkInode, null));

}
else {
Expand Down

0 comments on commit 27f59f1

Please sign in to comment.