[Bug 54632] missing curly braces in fix for CVE-2005-3805

Sergio Gelato Sergio.Gelato at astro.su.se
Mon Jul 31 09:01:04 UTC 2006


Public bug reported:

Binary package hint: linux-source-2.6.12

The patch
        kernel-exit_CVE-2005-3805.dpatch
reads in part:
        if (group_dead)
+               exit_itimers(tsk->signal);
                  acct_process(code);
        exit_mm(tsk);

Either the acct_process(code); line is incorrectly indented or (more likely) someone forgot to add curly braces:
        if (group_dead) {
                exit_itimers(tsk->signal);
                acct_process(code);
        }
        exit_mm(tsk);

** Affects: linux-source-2.6.12 (Ubuntu)
     Importance: Untriaged
         Status: Unconfirmed

-- 
missing curly braces in fix for CVE-2005-3805
https://launchpad.net/bugs/54632




More information about the kernel-bugs mailing list