Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit aad40d3d authored by Hans Verkuil's avatar Hans Verkuil Committed by Mauro Carvalho Chehab
Browse files

V4L/DVB (12112): cx231xx: fix uninitialized variable.



The variable 'rc' could be used uninitialized in the cx231xx_capture_start
function. Sri informed me that it should be initialized to -1.

Signed-off-by: default avatarHans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 54bb501c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2055,7 +2055,7 @@ int cx231xx_initialize_stream_xfer(struct cx231xx *dev, u32 media_type)

int cx231xx_capture_start(struct cx231xx *dev, int start, u8 media_type)
{
	int rc;
	int rc = -1;
	u32 ep_mask = -1;
	struct pcb_config *pcb_config;