Skip to content

Commit

Permalink
V4L/DVB (4832): Fix uninitialised variable in dvb_frontend_swzigzag
Browse files Browse the repository at this point in the history
Spotted by coverity/Adrian Bunk.

Signed-off-by: Andrew de Quincey <adq_dvb@lidskialf.net>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
  • Loading branch information
Andrew de Quincey authored and Mauro Carvalho Chehab committed Nov 26, 2006
1 parent bc495b6 commit 30d9464
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/media/dvb/dvb-core/dvb_frontend.c
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ static int dvb_frontend_swzigzag_autotune(struct dvb_frontend *fe, int check_wra

static void dvb_frontend_swzigzag(struct dvb_frontend *fe)
{
fe_status_t s;
fe_status_t s = 0;
struct dvb_frontend_private *fepriv = fe->frontend_priv;

/* if we've got no parameters, just keep idling */
Expand Down

0 comments on commit 30d9464

Please sign in to comment.