Release the proper object

This commit is contained in:
Rémi Denis-Courmont 2009-03-07 12:25:38 +02:00
parent eeaad0a834
commit df887d8444
1 changed files with 1 additions and 1 deletions

View File

@ -115,7 +115,7 @@ void dialog_FatalVa (vlc_object_t *obj, const char *title,
dialog_fatal_t dialog = { title, text, };
var_SetAddress (provider, "dialog-fatal", &dialog);
free (text);
vlc_object_release (obj);
vlc_object_release (provider);
}
#undef dialog_Fatal