]> err.no Git - linux-2.6/commitdiff
V4L/DVB (6622): tda827x: prevent possible NULL pointer dereference in tda827xa_lna_gain
authorMichael Krufky <mkrufky@linuxtv.org>
Thu, 22 Nov 2007 17:40:25 +0000 (14:40 -0300)
committerMauro Carvalho Chehab <mchehab@infradead.org>
Fri, 25 Jan 2008 21:02:17 +0000 (19:02 -0200)
If tda827x_config hasn't been defined, exit the function.

Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
drivers/media/dvb/frontends/tda827x.c

index 50adfb5395ecc70f5a6f14eee3465c855711db8e..229b11987a589fed652c00934c91101f59867eeb 100644 (file)
@@ -556,6 +556,11 @@ static void tda827xa_lna_gain(struct dvb_frontend *fe, int high,
        struct i2c_msg msg = { .addr = priv->i2c_addr, .flags = 0,
                               .buf = buf, .len = sizeof(buf) };
 
+       if (NULL == priv->cfg) {
+               dprintk("tda827x_config not defined, cannot set LNA gain!\n");
+               return;
+       }
+
        if (priv->cfg->config) {
                if (high)
                        dprintk("setting LNA to high gain\n");