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

Commit db9107b4 authored by Dan Carpenter's avatar Dan Carpenter Committed by David S. Miller
Browse files

mdio_bus: NULL dereference on allocation error



If bus = kzalloc() fails then we end up dereferencing bus when we do
"bus->irq[i] = PHY_POLL;".  The code is a little simpler if we reverse
the NULL check and return directly on failure.

Fixes: e7f4dc35 ('mdio: Move allocation of interrupts into core')
Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Reviewed-by: default avatarAndrew Lunn <andrew@lunn.ch>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 9d367edd
Loading
Loading
Loading
Loading
+6 −5
Original line number Diff line number Diff line
@@ -102,11 +102,12 @@ struct mii_bus *mdiobus_alloc_size(size_t size)
		alloc_size = sizeof(*bus);

	bus = kzalloc(alloc_size, GFP_KERNEL);
	if (bus) {
	if (!bus)
		return NULL;

	bus->state = MDIOBUS_ALLOCATED;
	if (size)
		bus->priv = (void *)bus + aligned_size;
	}

	/* Initialise the interrupts to polling */
	for (i = 0; i < PHY_MAX_ADDR; i++)