mirror of
https://github.com/brl/mutter.git
synced 2024-11-22 08:00:42 -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>
|
2008-01-06 Thomas Thurman <tthurman@gnome.org>
|
||||||
|
|
||||||
* src/core/display.c: Function commenting marathon; more to come.
|
* src/core/display.c: Function commenting marathon; more to come.
|
||||||
|
@ -402,11 +402,8 @@ main (int argc, char **argv)
|
|||||||
/* Free memory possibly allocated by the argument parsing which are
|
/* Free memory possibly allocated by the argument parsing which are
|
||||||
* no longer needed.
|
* no longer needed.
|
||||||
*/
|
*/
|
||||||
if (meta_args.save_file)
|
|
||||||
g_free (meta_args.save_file);
|
g_free (meta_args.save_file);
|
||||||
if (meta_args.display_name)
|
|
||||||
g_free (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.client_id);
|
||||||
|
|
||||||
if (!meta_display_open ())
|
if (!meta_display_open ())
|
||||||
|
Loading…
Reference in New Issue
Block a user