Re: packet: Improve exception handling in fanout_add()

From: Markus Elfring
Date: Mon Jan 01 2024 - 04:47:18 EST


> It is fine to call kfree with a possible NULL pointer:

> * If @object is NULL, no operation is performed.
> */
> void kfree(const void *object)

Such a function call triggers an input parameter validation
with a corresponding immediate return, doesn't it?
Do you find such data processing really helpful for the desired error/exception handling?

Regards,
Markus