mirror of https://github.com/xzeldon/htop.git
Prevent possible NULL pointer deference
Raised by cppcheck
This commit is contained in:
parent
79c939eb84
commit
60e557868a
|
@ -84,10 +84,9 @@ void ProcessList_freeCPULoadInfo(processor_cpu_load_info_t *p) {
|
||||||
if(0 != munmap(*p, vm_page_size)) {
|
if(0 != munmap(*p, vm_page_size)) {
|
||||||
CRT_fatalError("Unable to free old CPU load information\n");
|
CRT_fatalError("Unable to free old CPU load information\n");
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
*p = NULL;
|
*p = NULL;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
unsigned ProcessList_allocateCPULoadInfo(processor_cpu_load_info_t *p) {
|
unsigned ProcessList_allocateCPULoadInfo(processor_cpu_load_info_t *p) {
|
||||||
mach_msg_type_number_t info_size = sizeof(processor_cpu_load_info_t);
|
mach_msg_type_number_t info_size = sizeof(processor_cpu_load_info_t);
|
||||||
|
|
Loading…
Reference in New Issue