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

Commit 452c6446 authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab
Browse files

media: drxj: better handle errors



as reported by smatch:
	drivers/media/dvb-frontends/drx39xyj/drxj.c:2157 drxj_dap_atomic_read_write_block() error: uninitialized symbol 'word'.

The driver doesn't check if a read error occurred. Add such
check.

Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@s-opensource.com>
parent 00b4bac7
Loading
Loading
Loading
Loading
+7 −3
Original line number Diff line number Diff line
@@ -2151,9 +2151,13 @@ int drxj_dap_atomic_read_write_block(struct i2c_device_addr *dev_addr,
	if (read_flag) {
		/* read data from buffer */
		for (i = 0; i < (datasize / 2); i++) {
			drxj_dap_read_reg16(dev_addr,
			rc = drxj_dap_read_reg16(dev_addr,
						 (DRXJ_HI_ATOMIC_BUF_START + i),
						 &word, 0);
			if (rc) {
				pr_err("error %d\n", rc);
				goto rw_error;
			}
			data[2 * i] = (u8) (word & 0xFF);
			data[(2 * i) + 1] = (u8) (word >> 8);
		}