On 25.08.25 19:06, I Viswanath wrote:
As per Documentation/process/deprecated.rst, dynamic size calculations
should not be performed in memory allocator arguments due to possible
overflows.
Replaced malloc with calloc to avoid open-ended arithmetic
and prevent possible overflows.
Signed-off-by:
On Mon, Aug 25, 2025 at 10:36:43PM +0530, I Viswanath wrote:
> As per Documentation/process/deprecated.rst, dynamic size calculations
> should not be performed in memory allocator arguments due to possible
> overflows.
>
> Replaced malloc with calloc to avoid open-ended arithmetic
> and prevent po
As per Documentation/process/deprecated.rst, dynamic size calculations
should not be performed in memory allocator arguments due to possible
overflows.
Replaced malloc with calloc to avoid open-ended arithmetic
and prevent possible overflows.
Signed-off-by: I Viswanath
---
Even though the argume