From: Dan Carpenter Date: Sun, 23 Sep 2012 16:31:30 +0000 (+0300) Subject: staging: rts5139: use kzalloc() to close an info leak X-Git-Tag: upstream/snapshot3+hdmi~6593^2~46 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=55e7b4fbd47a510b6c8ca53eaf7d9dff816cd26c;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git staging: rts5139: use kzalloc() to close an info leak If we don't fill the whole buffer then there is information leaked to the user. Signed-off-by: Dan Carpenter Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/rts5139/rts51x_fop.c b/drivers/staging/rts5139/rts51x_fop.c index e1200fe..bf1a9e6 100644 --- a/drivers/staging/rts5139/rts51x_fop.c +++ b/drivers/staging/rts5139/rts51x_fop.c @@ -79,7 +79,7 @@ static int rts51x_sd_direct_cmnd(struct rts51x_chip *chip, case 1: /* Read from card */ - buf = kmalloc(cmnd->buf_len, GFP_KERNEL); + buf = kzalloc(cmnd->buf_len, GFP_KERNEL); if (!buf) TRACE_RET(chip, STATUS_NOMEM);