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:
Thomas Thurman 2008-01-08 03:13:17 +00:00 committed by Thomas James Alexander Thurman
parent a409a0a098
commit 286af99def
2 changed files with 8 additions and 6 deletions

View File

@ -1,3 +1,8 @@
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.
2008-01-06 Thomas Thurman <tthurman@gnome.org>
* src/core/display.c: Function commenting marathon; more to come.

View File

@ -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);