mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-05 06:58:56 +00:00
gst/net/gstnetclientclock.c: Free remote and local time arrays.
Original commit message from CVS: * gst/net/gstnetclientclock.c: (gst_net_client_clock_finalize): Free remote and local time arrays.
This commit is contained in:
parent
363f1bfd4a
commit
48d140df6f
3 changed files with 17 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2005-11-17 Wim Taymans <wim@fluendo.com>
|
||||
|
||||
* gst/net/gstnetclientclock.c: (gst_net_client_clock_finalize):
|
||||
Free remote and local time arrays.
|
||||
|
||||
2005-11-17 Wim Taymans <wim@fluendo.com>
|
||||
|
||||
* gst/net/gstnetclientclock.c: (do_linear_regression),
|
||||
|
|
|
@ -162,6 +162,12 @@ gst_net_client_clock_finalize (GObject * object)
|
|||
g_free (self->servaddr);
|
||||
self->servaddr = NULL;
|
||||
|
||||
g_free (self->local_times);
|
||||
self->local_times = NULL;
|
||||
|
||||
g_free (self->remote_times);
|
||||
self->remote_times = NULL;
|
||||
|
||||
G_OBJECT_CLASS (parent_class)->finalize (object);
|
||||
}
|
||||
|
||||
|
|
|
@ -162,6 +162,12 @@ gst_net_client_clock_finalize (GObject * object)
|
|||
g_free (self->servaddr);
|
||||
self->servaddr = NULL;
|
||||
|
||||
g_free (self->local_times);
|
||||
self->local_times = NULL;
|
||||
|
||||
g_free (self->remote_times);
|
||||
self->remote_times = NULL;
|
||||
|
||||
G_OBJECT_CLASS (parent_class)->finalize (object);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue