Re: tools/mm: Use calloc and check the potential memory allocation failure

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 




On 8/29/24 13:25, Markus Elfring wrote:
Replace malloc with calloc and add memory allocating check
                        memset(…, 0, …) call by calloc()?
Calloc returns zeroed-out memory.
I propose to improve the change description considerably.


of comm_str before used.
* Add also a null pointer check for the detection of a memory allocation failure.
Which is exactly what Zhu has done?
Can the commit message become nicer anyhow?

I agree. The commit message should note two things, first that
a malloc followed by a memset to 0 can be reduced to single calloc,
and second that, "add memory allocating check" can be replaced by
"add null pointer check in case of allocation failure".

* How do you think about to omit the statement “fprintf(stderr, "Out of memory\n");”?
Why?
I imagine that a returned null pointer can eventually be sufficient already.
Would you get helpful background information from the variable “errno”?

In case of calloc failure, errno is always set to ENOMEM, so we are guaranteed
that any failure is an out of memory failure.


Regards,
Markus




[Index of Archives]     [Kernel Development]     [Kernel Announce]     [Kernel Newbies]     [Linux Networking Development]     [Share Photos]     [IDE]     [Security]     [Git]     [Netfilter]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Device Mapper]

  Powered by Linux