diff options
author | Nicolas Huet <nicolas.huet@parrot.com> | 2015-11-10 10:42:35 +0100 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.com> | 2015-11-18 12:02:44 +0000 |
commit | 9adf0ff82903cad5331e40975ae91ed5d11bc102 (patch) | |
tree | a4a8d4f632b1e1a70ba68be335a4ce3090c526f4 | |
parent | bd50715ef29251abc9f72a164674e51d279800ba (diff) | |
download | gst-omx-9adf0ff82903cad5331e40975ae91ed5d11bc102.tar.gz |
omx: fix hacks leak on class init
-rw-r--r-- | omx/gstomx.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/omx/gstomx.c b/omx/gstomx.c index 69696c4..5dfb4ea 100644 --- a/omx/gstomx.c +++ b/omx/gstomx.c @@ -2618,6 +2618,7 @@ _class_init (gpointer g_class, gpointer data) #endif class_data->hacks = gst_omx_parse_hacks (hacks); + g_strfreev (hacks); } } |