Commit e32598b0 authored by Matteo Bruni's avatar Matteo Bruni Committed by Alexandre Julliard

wpp: Free strings on define deletion (Valgrind).

parent ffe65c27
......@@ -310,6 +310,9 @@ void pp_del_define(const char *name)
return;
}
free( ppp->ident );
free( ppp->subst.text );
free( ppp->filename );
free_pp_entry( ppp, pphash(name) );
if(pp_status.debug)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment