bug-gnulib
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: sc_cast_of_argument_to_free


From: Jim Meyering
Subject: Re: sc_cast_of_argument_to_free
Date: Fri, 03 Apr 2009 16:10:07 +0200

Reuben Thomas wrote:
> Why is this rule valid? GCC gives warnings if const pointers are not
> cast to non-const before passing to C. As far as I can see, this is
> correct: free takes a non-const argument.

> Should malloced memory
> simply not be assigned to a const pointer?

Right.
In the scope that frees pointer P, P should not have the "const"
attribute, since the "const" attribute implies you will not modify
anything through P, and free may do that.




reply via email to

[Prev in Thread] Current Thread [Next in Thread]