g_free is a no-op on nulls; there is no need to test.
2008-01-07 Thomas Thurman <tthurman@gnome.org> * src/core/main.c (main): g_free is a no-op on nulls; there is no need to test. svn path=/trunk/; revision=3510
This commit is contained in:

committed by
Thomas James Alexander Thurman

parent
a409a0a098
commit
286af99def
@ -402,12 +402,9 @@ main (int argc, char **argv)
|
||||
/* Free memory possibly allocated by the argument parsing which are
|
||||
* no longer needed.
|
||||
*/
|
||||
if (meta_args.save_file)
|
||||
g_free (meta_args.save_file);
|
||||
if (meta_args.display_name)
|
||||
g_free (meta_args.display_name);
|
||||
if (meta_args.client_id)
|
||||
g_free (meta_args.client_id);
|
||||
g_free (meta_args.save_file);
|
||||
g_free (meta_args.display_name);
|
||||
g_free (meta_args.client_id);
|
||||
|
||||
if (!meta_display_open ())
|
||||
meta_exit (META_EXIT_ERROR);
|
||||
|
Reference in New Issue
Block a user