Prev: [PATCH 12/15] pci: riptide: check kzalloc() result
Next: [PATCH 13/15] sound/soc: davinci: check kzalloc() result (typo)
From: Kulikov Vasiliy on 16 Jul 2010 12:20 If kzalloc() fails exit with -ENOMEM. Signed-off-by: Kulikov Vasiliy <segooon(a)gmail.com> --- drivers/gpu/drm/radeon/r300.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/drivers/gpu/drm/radeon/r300.c b/drivers/gpu/drm/radeon/r300.c index 7e81db5..767c109 100644 --- a/drivers/gpu/drm/radeon/r300.c +++ b/drivers/gpu/drm/radeon/r300.c @@ -1176,6 +1176,8 @@ int r300_cs_parse(struct radeon_cs_parser *p) int r; track = kzalloc(sizeof(*track), GFP_KERNEL); + if (track == NULL) + return -ENOMEM; r100_cs_track_clear(p->rdev, track); p->track = track; do { -- 1.7.0.4 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |