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

Commit b23c7a42 authored by Alan Cox's avatar Alan Cox Committed by Russell King
Browse files

[ARM] fix leak in iop13xx/pci



Another leak found by Daniel Marjamäki

Signed-off-by: default avatarAlan Cox <alan@lxorguk.ukuu.org.uk>
Signed-off-by: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
parent ecbf61e7
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -1026,8 +1026,10 @@ int iop13xx_pci_setup(int nr, struct pci_sys_data *sys)
		which_atu = 0;
	}

	if (!which_atu)
	if (!which_atu) {
		kfree(res);
		return 0;
	}

	switch(which_atu) {
	case IOP13XX_INIT_ATU_ATUX:
@@ -1074,6 +1076,7 @@ int iop13xx_pci_setup(int nr, struct pci_sys_data *sys)
		sys->map_irq = iop13xx_pcie_map_irq;
		break;
	default:
		kfree(res);
		return 0;
	}