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

Commit 8231152f authored by Alexander Beregalov's avatar Alexander Beregalov Committed by Mauro Carvalho Chehab
Browse files

V4L/DVB: ir: fix memory leak



Free ir_dev before exit.
Found by cppcheck.

Signed-off-by: default avatarAlexander Beregalov <a.beregalov@gmail.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 78b06e02
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -421,8 +421,10 @@ int ir_input_register(struct input_dev *input_dev,
	ir_dev->rc_tab.size = ir_roundup_tablesize(rc_tab->size);
	ir_dev->rc_tab.scan = kzalloc(ir_dev->rc_tab.size *
				    sizeof(struct ir_scancode), GFP_KERNEL);
	if (!ir_dev->rc_tab.scan)
	if (!ir_dev->rc_tab.scan) {
		kfree(ir_dev);
		return -ENOMEM;
	}

	IR_dprintk(1, "Allocated space for %d keycode entries (%zd bytes)\n",
		ir_dev->rc_tab.size,