GApplication: don't leak 'hint' on remote Open

We were using format string "s" to deconstruct the open hint into a
'const gchar *' which, of course, we never freed.  Fix that.
This commit is contained in:
Ryan Lortie 2013-04-21 10:55:40 -04:00
parent 706e636ab8
commit 0646e00e25

View File

@ -185,7 +185,7 @@ g_application_impl_method_call (GDBusConnection *connection,
GFile **files;
gint n, i;
g_variant_get (parameters, "(@ass@a{sv})",
g_variant_get (parameters, "(@as&s@a{sv})",
&array, &hint, &platform_data);
n = g_variant_n_children (array);