From: Xiubo Li
Date: Mon, 19 May 2014 08:32:09 +0000 (+0800)
Subject: ASoC: cache: Fix possible ZERO_SIZE_PTR pointer dereferencing error.
X-Git-Tag: omap-for-v3.16/fixes-against-rc1~21^2~24^2~13^2~1
X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b59dce53ef6193139253db09bfb64e3834689f1b;p=pandora-kernel.git
ASoC: cache: Fix possible ZERO_SIZE_PTR pointer dereferencing error.
Since we cannot make sure the 'reg_size' will always be none zero here,
and then if 'reg_size' equals to zero, the kzalloc() will return ZERO_SIZE_PTR,
which equals to ((void *)16).
So this patch fix this with just doing the 'reg_size' zero check before calling
kzalloc().
Signed-off-by: Xiubo Li
Signed-off-by: Mark Brown
---
Reading git-diff-tree failed