Commit 1168cbcf authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Fix leak

parent a21347d0
...@@ -115,6 +115,7 @@ void dialog_FatalVa (vlc_object_t *obj, const char *title, ...@@ -115,6 +115,7 @@ void dialog_FatalVa (vlc_object_t *obj, const char *title,
dialog_fatal_t dialog = { title, text, }; dialog_fatal_t dialog = { title, text, };
var_SetAddress (provider, "dialog-fatal", &dialog); var_SetAddress (provider, "dialog-fatal", &dialog);
free (text); free (text);
vlc_object_release (obj);
} }
#undef dialog_Fatal #undef dialog_Fatal
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment