mirror of
https://xff.cz/git/u-boot/
synced 2025-09-01 08:42:12 +02:00
fs: ext4: fix symlink read function
Since last API changes for files >2GB, the read of symlink is broken as ext4fs_read_file now returns 0 instead of the length of the actual read. Signed-off-by: Gary Bisson <gary.bisson@boundarydevices.com>
This commit is contained in:
@@ -2046,7 +2046,7 @@ static char *ext4fs_read_symlink(struct ext2fs_node *node)
|
|||||||
status = ext4fs_read_file(diro, 0,
|
status = ext4fs_read_file(diro, 0,
|
||||||
__le32_to_cpu(diro->inode.size),
|
__le32_to_cpu(diro->inode.size),
|
||||||
symlink, &actread);
|
symlink, &actread);
|
||||||
if (status == 0) {
|
if ((status < 0) || (actread == 0)) {
|
||||||
free(symlink);
|
free(symlink);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user