(svn r23198) -Codechange: introduce a free that takes const pointers so we don't need to cast to void/non-const before being able to free
This commit is contained in:
@@ -48,7 +48,7 @@ struct QueryString {
|
||||
*/
|
||||
~QueryString()
|
||||
{
|
||||
free((void*)this->orig);
|
||||
free(this->orig);
|
||||
}
|
||||
|
||||
private:
|
||||
|
Reference in New Issue
Block a user