[GrammarParser] Fix memory leak of Property after parsing config entry.

This commit is contained in:
Dave Davenport 2019-01-29 07:32:07 +01:00
parent 640cf28d65
commit 0dfc671bcc
1 changed files with 2 additions and 0 deletions

View File

@ -337,6 +337,8 @@ t_config_property
#endif #endif
g_free(error); g_free(error);
} }
// We don't keep any reference to this after this point, so the property can be free'ed.
rofi_theme_property_free ( $1 );
} }
/** /**