mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 14:26:43 +00:00
subparse: fix GError leak
This commit is contained in:
parent
2f177a7616
commit
6549db36cd
1 changed files with 1 additions and 2 deletions
|
@ -1740,7 +1740,6 @@ gst_subparse_type_find (GstTypeFind * tf, gpointer private)
|
||||||
* otherwise convert as always */
|
* otherwise convert as always */
|
||||||
if (!g_utf8_validate (str, 128, &end) && (end - str) < 120) {
|
if (!g_utf8_validate (str, 128, &end) && (end - str) < 120) {
|
||||||
gchar *converted_str;
|
gchar *converted_str;
|
||||||
GError *err = NULL;
|
|
||||||
gsize tmp;
|
gsize tmp;
|
||||||
const gchar *enc;
|
const gchar *enc;
|
||||||
|
|
||||||
|
@ -1752,7 +1751,7 @@ gst_subparse_type_find (GstTypeFind * tf, gpointer private)
|
||||||
enc = "ISO-8859-15";
|
enc = "ISO-8859-15";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
converted_str = gst_convert_to_utf8 (str, 128, enc, &tmp, &err);
|
converted_str = gst_convert_to_utf8 (str, 128, enc, &tmp, NULL);
|
||||||
if (converted_str != NULL) {
|
if (converted_str != NULL) {
|
||||||
g_free (str);
|
g_free (str);
|
||||||
str = converted_str;
|
str = converted_str;
|
||||||
|
|
Loading…
Reference in a new issue