projects
/
openwrt.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
squashfs4: backport an upstream change to fix the file mode check to allow setuid...
[openwrt.git]
/
tools
/
squashfs4
/
patches
/
140-mode_check.patch
1
--- a/squashfs-tools/pseudo.c
2
+++ b/squashfs-tools/pseudo.c
3
@@ -374,7 +374,7 @@
4
}
5
6
7
- if(mode > 0777) {
8
+ if(mode > 07777) {
9
ERROR("Mode %o out of range\n", mode);
10
goto error;
11
}
This page took
0.041788 seconds
and
5
git commands to generate.