squashfs4: backport an upstream change to fix the file mode check to allow setuid/setgid binaries (thx, ermo) - fixes #7653

SVN-Revision: 22334
v19.07.3_mercusys_ac12_duma
Felix Fietkau 14 years ago
parent fd8142403e
commit 67b4181c8a

@ -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;
}
Loading…
Cancel
Save