I have a struct defined in .h
struct buf_stats {
// ***
};
then in .c file
struct buf_stats *bs = malloc(sizeof(struct buf_states*)) ;
where buf_states
is a typo.
but gcc does not warn me, although I used -Wall
and this bug/typo cost me 3 hours to find out.
How to make gcc warn undefined struct like this?
In your code
is wrong for many reasons, like
But you compiler can't help much in _this_case for this particular type of error, as
a pointer to (any) type in a platform has a defined size, for that the structure (i.e. the type of the variable to which it points to) need not be complete (defined). This is the reason we can have self-referencing structures, right?
malloc()
has no idea about the target variable type. It just reads the argument for the needed size, return a pointer (which is of typevoid *
) to the allocated memory and upon assignment, that gets changed to the target type. It cannot possibly calculate the mismatch in the target size (type) with the allocated memory size.Most convenient and simplest way to avoid these type of mistakes is, not to use the hard-coded type directly as the operand of
sizeof
, rather, use the variable reference.Something like
which is equivalent to
but is more robust and less error prone.
Notes:
bs
.