mirror of
https://github.com/brl/mutter.git
synced 2024-11-21 15:40:41 -05:00
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:
parent
a409a0a098
commit
286af99def
@ -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.
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user