diff options
author | Andrew Morton <akpm@osdl.org> | 2006-02-28 16:59:19 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-02-28 20:53:44 -0800 |
commit | d6713e046336ffa98060418c4d2c65243639e107 (patch) | |
tree | 3c076173875f22069a2e08fb127b4be11d670cb1 /mm | |
parent | 0551fbd29e16fccd46e41b7d01bf0f8f39b14212 (diff) | |
download | linux-d6713e046336ffa98060418c4d2c65243639e107.tar.gz linux-d6713e046336ffa98060418c4d2c65243639e107.tar.bz2 linux-d6713e046336ffa98060418c4d2c65243639e107.zip |
[PATCH] out_of_memory(): use of uninitialised
Under some circumstances `points' can get printed before it's initialised.
Spotted by Carlos Martin <carlos@cmartin.tk>.
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'mm')
-rw-r--r-- | mm/oom_kill.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/oom_kill.c b/mm/oom_kill.c index 8123fad5a485..c86c737d2433 100644 --- a/mm/oom_kill.c +++ b/mm/oom_kill.c @@ -302,7 +302,7 @@ void out_of_memory(struct zonelist *zonelist, gfp_t gfp_mask, int order) { struct mm_struct *mm = NULL; task_t *p; - unsigned long points; + unsigned long points = 0; if (printk_ratelimit()) { printk("oom-killer: gfp_mask=0x%x, order=%d\n", |