1
1

Fix null pointer arithmetic resulting in potential undefined behavior

NULL pointer arithmetic is undefined behaviour in c.
The payload_ptr can be NULL in the moment when mpool is not initialized.

References from the c11 standard:
- 6.5.6 Additive operators
- 6.3.2.3 Pointers

Signed-off-by: Christoph Niethammer <niethammer@hlrs.de>
Этот коммит содержится в:
Christoph Niethammer 2020-07-03 22:18:17 +02:00
родитель e547e2d3ea
Коммит a3483e4b71

Просмотреть файл

@ -272,7 +272,9 @@ int opal_free_list_grow_st (opal_free_list_t* flist, size_t num_elements, opal_f
}
ptr += head_size;
payload_ptr += elem_size;
if (NULL != payload_ptr) {
payload_ptr += elem_size;
}
}
if (OPAL_SUCCESS != rc && 0 == num_elements) {