From 3fbd95d85ed293a43b9c76b2b21ad3b0eb634fc7 Mon Sep 17 00:00:00 2001 From: Vincent Penquerc'h Date: Thu, 12 Jan 2012 16:24:01 +0000 Subject: [PATCH] theoraparse: fix array leak --- ext/theora/gsttheoraparse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/theora/gsttheoraparse.c b/ext/theora/gsttheoraparse.c index da0d49c..4e356c6 100644 --- a/ext/theora/gsttheoraparse.c +++ b/ext/theora/gsttheoraparse.c @@ -241,7 +241,7 @@ theora_parse_get_property (GObject * object, guint prop_id, g_value_unset (&v); } - g_value_set_boxed (value, array); + g_value_take_boxed (value, array); } break; default: -- 2.7.4