Skip to content

Commit cd83b0a

Browse files
committed
Merge branch 'hotfix/free-memory-in-interpipesrc-finalize'
2 parents 6daf224 + d332b5d commit cd83b0a

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ dnl please read gstreamer/docs/random/autotools before changing this file
66
dnl initialize autoconf
77
dnl releases only do -Wall, git and prerelease does -Werror too
88
dnl use a three digit version number for releases, and four for git/pre
9-
AC_INIT([GstInterpipe],[1.1.6],
9+
AC_INIT([GstInterpipe],[1.1.7],
1010
[http://www.github.com/RidgeRun/gst-interpipe-1.0],
1111
[gst-interpipe],
1212
[http://developer.ridgerun.com/wiki/index.php?title=GstInterpipe])

gst/interpipe/gstinterpipesrc.c

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -366,6 +366,11 @@ gst_inter_pipe_src_finalize (GObject * object)
366366
g_queue_free_full (src->pending_serial_events,
367367
(GDestroyNotify) gst_event_unref);
368368

369+
if (src->listen_to) {
370+
g_free (src->listen_to);
371+
src->listen_to = NULL;
372+
}
373+
369374
/* Chain up to the parent class */
370375
G_OBJECT_CLASS (gst_inter_pipe_src_parent_class)->finalize (object);
371376
}

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
project('gst-interpipes', 'c',
2-
version : '1.1.6',
2+
version : '1.1.7',
33
meson_version : '>= 0.50',)
44

55
gst_interpipes_version = meson.project_version()

0 commit comments

Comments
 (0)