winedump: Get rid of a useless destructor.

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
feature/deterministic
Alexandre Julliard 2020-04-09 21:03:53 +02:00
parent de47a5969b
commit 3d77dd1058
1 changed files with 0 additions and 15 deletions

View File

@ -337,18 +337,3 @@ static const char *get_type (parsed_symbol *sym, const char *proto, int arg)
}
return proto_str;
}
#ifdef __GNUC__
/*******************************************************************
* search_cleanup
*
* Free memory used while searching (a niceity)
*/
void search_cleanup (void) __attribute__ ((destructor));
void search_cleanup (void)
{
free (grep_buff);
free (fgrep_buff);
}
#endif