summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/2.6.18/30013_reset-pdeathsig-on-suid.patch')
-rw-r--r--trunk/2.6.18/30013_reset-pdeathsig-on-suid.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/trunk/2.6.18/30013_reset-pdeathsig-on-suid.patch b/trunk/2.6.18/30013_reset-pdeathsig-on-suid.patch
deleted file mode 100644
index 1be66aa..0000000
--- a/trunk/2.6.18/30013_reset-pdeathsig-on-suid.patch
+++ /dev/null
@@ -1,22 +0,0 @@
---- linux-source-2.6.18/fs/exec.c.orig 2006-09-19 21:42:06.000000000 -0600
-+++ linux-source-2.6.18/fs/exec.c 2007-08-10 19:44:43.000000000 -0600
-@@ -887,6 +887,7 @@
- file_permission(bprm->file, MAY_READ) ||
- (bprm->interp_flags & BINPRM_FLAGS_ENFORCE_NONDUMP)) {
- suid_keys(current);
-+ current->pdeath_signal = 0;
- current->mm->dumpable = suid_dumpable;
- }
-
-@@ -977,8 +978,10 @@
- {
- int unsafe;
-
-- if (bprm->e_uid != current->uid)
-+ if (bprm->e_uid != current->uid) {
- suid_keys(current);
-+ current->pdeath_signal = 0;
-+ }
- exec_keys(current);
-
- task_lock(current);