gst/tcp/gstmultifdsink.c: When asking g_value_array_new to prealloc elements, we...
authorMichael Smith <msmith@xiph.org>
Fri, 28 Apr 2006 15:24:00 +0000 (15:24 +0000)
committerMichael Smith <msmith@xiph.org>
Fri, 28 Apr 2006 15:24:00 +0000 (15:24 +0000)
Original commit message from CVS:
* gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_get_stats):
When asking g_value_array_new to prealloc elements, we may as well
ask for the right number of elements.

ChangeLog
gst/tcp/gstmultifdsink.c

index 525e313..a3b15de 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2006-04-28  Michael Smith  <msmith@fluendo.com>
+
+       * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_get_stats):
+         When asking g_value_array_new to prealloc elements, we may as well
+         ask for the right number of elements.
+
 2006-04-28  Wim Taymans  <wim@fluendo.com>
 
        * gst-libs/gst/audio/gstbaseaudiosink.c:
index 655edae..5be47f5 100644 (file)
@@ -664,7 +664,7 @@ gst_multi_fd_sink_get_stats (GstMultiFdSink * sink, int fd)
     GValue value = { 0 };
     guint64 interval;
 
-    result = g_value_array_new (4);
+    result = g_value_array_new (5);
 
     g_value_init (&value, G_TYPE_UINT64);
     g_value_set_uint64 (&value, client->bytes_sent);