mirror of
https://github.com/brl/mutter.git
synced 2024-11-28 02:50:41 -05:00
meta-monitor-config: Initialize MetaConfiguration's properly
We weren't initializing the ref count which means we could either be leaking or end up using free'd memory. https://bugzilla.gnome.org/show_bug.cgi?id=774135
This commit is contained in:
parent
76f890a26f
commit
a943c0fc12
@ -454,7 +454,7 @@ handle_end_element (GMarkupParseContext *context,
|
|||||||
{
|
{
|
||||||
if (strcmp (element_name, "configuration") == 0 && parser->unknown_count == 0)
|
if (strcmp (element_name, "configuration") == 0 && parser->unknown_count == 0)
|
||||||
{
|
{
|
||||||
MetaConfiguration *config = g_slice_new (MetaConfiguration);
|
MetaConfiguration *config = config_new ();
|
||||||
|
|
||||||
g_assert (parser->key_array->len == parser->output_array->len);
|
g_assert (parser->key_array->len == parser->output_array->len);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user