diff options
author | Edgard Lima <edgard.lima@indt.org.br> | 2006-01-25 14:44:05 +0000 |
---|---|---|
committer | Edgard Lima <edgard.lima@indt.org.br> | 2006-01-25 14:44:05 +0000 |
commit | 8fe3f072722c3ffd241d5a3a8b01800ccd8b5c63 (patch) | |
tree | b6a17438009c2ba4fb852bf5b5dffe45369a8689 /ext/neon | |
parent | 3d4493630e361d762208982eaff6f9a52e22d9df (diff) | |
download | gst-plugins-bad-8fe3f072722c3ffd241d5a3a8b01800ccd8b5c63.tar.gz gst-plugins-bad-8fe3f072722c3ffd241d5a3a8b01800ccd8b5c63.tar.bz2 gst-plugins-bad-8fe3f072722c3ffd241d5a3a8b01800ccd8b5c63.zip |
Just chain up finalize calls (calling parent_class->finalize).
Original commit message from CVS:
Just chain up finalize calls (calling parent_class->finalize).
Diffstat (limited to 'ext/neon')
-rw-r--r-- | ext/neon/gstneonhttpsrc.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/neon/gstneonhttpsrc.c b/ext/neon/gstneonhttpsrc.c index 6c0f2b0e..32c1b6d8 100644 --- a/ext/neon/gstneonhttpsrc.c +++ b/ext/neon/gstneonhttpsrc.c @@ -198,6 +198,9 @@ gst_neonhttp_src_finalize (GObject * gobject) ne_free (this->uristr); } + if (G_OBJECT_CLASS (parent_class)->finalize) + G_OBJECT_CLASS (parent_class)->finalize (gobject); + } int |