Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=4d3b573ad9af85b6df104044f6fff05f04349db2
Commit:     4d3b573ad9af85b6df104044f6fff05f04349db2
Parent:     64d67d21773f1946ddc04aedc201f6c2f3ee1bfb
Author:     Andrew Morton <[EMAIL PROTECTED]>
AuthorDate: Sun Jul 15 23:41:03 2007 -0700
Committer:  Linus Torvalds <[EMAIL PROTECTED]>
CommitDate: Mon Jul 16 09:05:47 2007 -0700

    binfmt_elf warning fix
    
    fs/binfmt_elf.c: In function 'load_elf_binary':
    fs/binfmt_elf.c:1002: warning: 'interp_map_addr' may be used uninitialized 
in this function
    
    The compiler (gcc-4.1.0) is correct, but it failed to notice that we didn't
    use the resulting value.
    
    Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
    Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>
---
 fs/binfmt_elf.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/fs/binfmt_elf.c b/fs/binfmt_elf.c
index 5cfa735..a27e42b 100644
--- a/fs/binfmt_elf.c
+++ b/fs/binfmt_elf.c
@@ -999,7 +999,7 @@ static int load_elf_binary(struct linux_binprm *bprm, 
struct pt_regs *regs)
                        elf_entry = load_aout_interp(&loc->interp_ex,
                                                     interpreter);
                } else {
-                       unsigned long interp_map_addr;  /* unused */
+                       unsigned long uninitialized_var(interp_map_addr);
 
                        elf_entry = load_elf_interp(&loc->interp_elf_ex,
                                                    interpreter,
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to