aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/drivers/media/dvb-core/dmxdev.c
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab+huawei@kernel.org>2021-06-09 14:43:16 +0200
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>2021-06-09 14:45:20 +0200
commit3d42c93e5fc9e67e0023b7242097f1c1c2cead01 (patch)
treeef5b3614102f52237988f0c3582e9e444f8d8fcb /drivers/media/dvb-core/dmxdev.c
parentmedia: hantro: IMX8M: add variant for G2/HEVC codec (diff)
downloadwireguard-linux-3d42c93e5fc9e67e0023b7242097f1c1c2cead01.tar.xz
wireguard-linux-3d42c93e5fc9e67e0023b7242097f1c1c2cead01.zip
media: dmxdev: change the check for problems allocing secfeed
While the logic there is right, it tricks static check analyzers, like smatch: drivers/media/dvb-core/dmxdev.c:729 dvb_dmxdev_filter_start() error: we previously assumed '*secfeed' could be null (see line 719) Because the implementation of the filter itself is made via a callback, with its real implementation at the dvbdmx_allocate_section_feed() inside dvb_demux.c. So, change the check logic to make it clear that the function will not try to use *secfeed == NULL. Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Diffstat (limited to 'drivers/media/dvb-core/dmxdev.c')
-rw-r--r--drivers/media/dvb-core/dmxdev.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/dvb-core/dmxdev.c b/drivers/media/dvb-core/dmxdev.c
index f14a872d1268..5d5a48475a54 100644
--- a/drivers/media/dvb-core/dmxdev.c
+++ b/drivers/media/dvb-core/dmxdev.c
@@ -720,7 +720,7 @@ static int dvb_dmxdev_filter_start(struct dmxdev_filter *filter)
ret = dmxdev->demux->allocate_section_feed(dmxdev->demux,
secfeed,
dvb_dmxdev_section_callback);
- if (ret < 0) {
+ if (!*secfeed) {
pr_err("DVB (%s): could not alloc feed\n",
__func__);
return ret;