[util] Plug minor leak
diff --git a/util/options.cc b/util/options.cc
index c55feb2..835add7 100644
--- a/util/options.cc
+++ b/util/options.cc
@@ -374,7 +374,11 @@
if (NULL == supported_formats)
text = "Set output format";
else
- text = text_free = g_strdup_printf ("Set output format\n\n Supported formats are: %s", supported_formats);
+ {
+ char *items = g_strjoinv ("/", const_cast<char **> (supported_formats));
+ text = text_free = g_strdup_printf ("Set output format\n\n Supported formats are: %s", items);
+ g_free (items);
+ }
GOptionEntry entries[] =
{