Skip to content
Snippets Groups Projects
Commit 1194c234 authored by Philip Withnall's avatar Philip Withnall Committed by Zeeshan Ali Khan
Browse files

main: Remove stray semicolon

This fixes a memory leak on exit.

Spotted by Coverity (CID: #78510).

https://bugs.freedesktop.org/show_bug.cgi?id=94669
parent b754c05f
No related branches found
No related tags found
No related merge requests found
......@@ -191,7 +191,7 @@ main (int argc, char **argv)
main_loop = g_main_loop_new (NULL, FALSE);
g_main_loop_run (main_loop);
if (manager != NULL);
if (manager != NULL)
g_object_unref (manager);
g_bus_unown_name (owner_id);
g_main_loop_unref (main_loop);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment