Merge pull request #8751 from trofi/gcc-14-calloc-fix
tests: fix `calloc()` argument list (`gcc-14` fix)
This commit is contained in:
commit
c4e911889e
1 changed files with 6 additions and 6 deletions
|
@ -125,8 +125,8 @@
|
||||||
do { \
|
do { \
|
||||||
TEST_ASSERT((pointer) == NULL); \
|
TEST_ASSERT((pointer) == NULL); \
|
||||||
if ((item_count) != 0) { \
|
if ((item_count) != 0) { \
|
||||||
(pointer) = mbedtls_calloc(sizeof(*(pointer)), \
|
(pointer) = mbedtls_calloc((item_count), \
|
||||||
(item_count)); \
|
sizeof(*(pointer))); \
|
||||||
TEST_ASSERT((pointer) != NULL); \
|
TEST_ASSERT((pointer) != NULL); \
|
||||||
} \
|
} \
|
||||||
} while (0)
|
} while (0)
|
||||||
|
@ -155,8 +155,8 @@
|
||||||
#define TEST_CALLOC_NONNULL(pointer, item_count) \
|
#define TEST_CALLOC_NONNULL(pointer, item_count) \
|
||||||
do { \
|
do { \
|
||||||
TEST_ASSERT((pointer) == NULL); \
|
TEST_ASSERT((pointer) == NULL); \
|
||||||
(pointer) = mbedtls_calloc(sizeof(*(pointer)), \
|
(pointer) = mbedtls_calloc((item_count), \
|
||||||
(item_count)); \
|
sizeof(*(pointer))); \
|
||||||
if (((pointer) == NULL) && ((item_count) == 0)) { \
|
if (((pointer) == NULL) && ((item_count) == 0)) { \
|
||||||
(pointer) = mbedtls_calloc(1, 1); \
|
(pointer) = mbedtls_calloc(1, 1); \
|
||||||
} \
|
} \
|
||||||
|
@ -175,8 +175,8 @@
|
||||||
do { \
|
do { \
|
||||||
TEST_ASSERT((pointer) == NULL); \
|
TEST_ASSERT((pointer) == NULL); \
|
||||||
if ((item_count) != 0) { \
|
if ((item_count) != 0) { \
|
||||||
(pointer) = mbedtls_calloc(sizeof(*(pointer)), \
|
(pointer) = mbedtls_calloc((item_count), \
|
||||||
(item_count)); \
|
sizeof(*(pointer))); \
|
||||||
TEST_ASSUME((pointer) != NULL); \
|
TEST_ASSUME((pointer) != NULL); \
|
||||||
} \
|
} \
|
||||||
} while (0)
|
} while (0)
|
||||||
|
|
Loading…
Reference in a new issue