[patch] possible NULL deref in alloc_posix_timer()

From: Dan Carpenter
Date: Mon Sep 22 2008 - 05:33:00 EST


Found by static checker (http://repo.or.cz/w/smatch.git).
Compile tested.

Signed-off-by: Dan Carpenter <error27@xxxxxxxxx>

--- kernel/posix-timers.c.orig 2008-08-29 01:52:02.000000000 +0300
+++ kernel/posix-timers.c 2008-09-20 21:54:19.000000000 +0300
@@ -441,7 +441,7 @@
return tmr;
if (unlikely(!(tmr->sigq = sigqueue_alloc()))) {
kmem_cache_free(posix_timers_cache, tmr);
- tmr = NULL;
+ return NULL;
}
memset(&tmr->sigq->info, 0, sizeof(siginfo_t));
return tmr;
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/