I define a NULL_PTR as 0U
Then call a function with this NULL_PTR as argument.
read_some_data(2U, (uint8_t *const) NULL_PTR, (uint8_t *const) NULL_PTR);
Called function prototype:
int16_t read_some_data(const uint8_t id, uint8_t *const data_1, uint8_t *const data_2);
On compilation, Misra raised a rule 11.3 violation error.(A cast should not be performed between a pointer type and an integral type.)
But if I just pass the NULL_PTR as follows, no violation.
read_some_data(2U, NULL_PTR, NULL_PTR);
Which is the better way to do? Suppress Misra 11.3 rule or just pass the NULL_PTR without casting?
(void *)0. Note that this is different from C++, where you can just define it as0. – Paul R Mar 28 '11 at 12:260uis a null pointer constant in both C and C++.(void*)0is a null pointer constant in C but not in C++. It's ambiguous in either whetherNULL_PTRis intended to have pointer type, or to be a null pointer constant, so I've nothing against it being(void*)0, but presumably defining it that way will trigger the Misra rule and so is not an option here anyway. In C++ it pretty much has to be integer type to be useful, since there's no implicit conversion fromvoid*to other pointer types, so(void*)0can't be assigned without a cast. – Steve Jessop Mar 28 '11 at 12:39intas opposed to another integral type. If Misra bans casting, then you're pretty much screwed there, you'll have to create a temporary pointer variable to contain the value. The same would apply to unprototyped function calls, but surely Misra bans those too? – Steve Jessop Mar 28 '11 at 12:45(void *)0? That expression is guaranteed to produce a null pointer constant. – kaizer.se Nov 7 '11 at 20:27