mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-05-24 10:39:52 +00:00
[media] s5k5baf: Fix potential NULL pointer dereferencing
Dereference 'fw' after the NULL check. Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
This commit is contained in:
parent
7296e158b5
commit
c0ee62734e
1 changed files with 3 additions and 1 deletions
|
@ -548,12 +548,14 @@ static void s5k5baf_synchronize(struct s5k5baf *state, int timeout, u16 addr)
|
||||||
static u16 *s5k5baf_fw_get_seq(struct s5k5baf *state, u16 seq_id)
|
static u16 *s5k5baf_fw_get_seq(struct s5k5baf *state, u16 seq_id)
|
||||||
{
|
{
|
||||||
struct s5k5baf_fw *fw = state->fw;
|
struct s5k5baf_fw *fw = state->fw;
|
||||||
u16 *data = fw->data + 2 * fw->count;
|
u16 *data;
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
if (fw == NULL)
|
if (fw == NULL)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
|
data = fw->data + 2 * fw->count;
|
||||||
|
|
||||||
for (i = 0; i < fw->count; ++i) {
|
for (i = 0; i < fw->count; ++i) {
|
||||||
if (fw->seq[i].id == seq_id)
|
if (fw->seq[i].id == seq_id)
|
||||||
return data + fw->seq[i].offset;
|
return data + fw->seq[i].offset;
|
||||||
|
|
Loading…
Add table
Reference in a new issue