squashfs4: backport an upstream change to fix the file mode check to allow setuid...
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Wed, 21 Jul 2010 17:31:16 +0000 (17:31 +0000)
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Wed, 21 Jul 2010 17:31:16 +0000 (17:31 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@22334 3c298f89-4303-0410-b956-a3cf2f4a3e73

tools/squashfs4/patches/140-mode_check.patch [new file with mode: 0644]

diff --git a/tools/squashfs4/patches/140-mode_check.patch b/tools/squashfs4/patches/140-mode_check.patch
new file mode 100644 (file)
index 0000000..30ab4e1
--- /dev/null
@@ -0,0 +1,11 @@
+--- a/squashfs-tools/pseudo.c
++++ b/squashfs-tools/pseudo.c
+@@ -374,7 +374,7 @@
+       }
+-      if(mode > 0777) {
++      if(mode > 07777) {
+               ERROR("Mode %o out of range\n", mode);
+               goto error;
+       }