On 04/27/2016 10:40 AM, Stefan Roese wrote:
From: Ronald Zachariah <rozac...@cisco.com>
The function ext4fs_read_symlink was unable to handle a symlink
which had target name of exactly 60 characters.
Reviewed-by: Stephen Warren <swar...@nvidia.com>
This seems to match how the Linux kernel encodes symlinks.
- if (__le32_to_cpu(diro->inode.size) <= 60) {
+ if (__le32_to_cpu(diro->inode.size) < 60) {
It'd be nice if "60" was replaced with sizeof(diro->inode.b.symlink),
but that's probably a topic for a different patch.
_______________________________________________
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot