multiudpsink: fix misleading comment
authorTim-Philipp Müller <tim@centricular.com>
Thu, 19 Dec 2013 12:47:22 +0000 (12:47 +0000)
committerTim-Philipp Müller <tim@centricular.com>
Thu, 19 Dec 2013 12:47:22 +0000 (12:47 +0000)
Those are not allocated on the stack.

gst/udp/gstmultiudpsink.c

index f71594a..fc94c8f 100644 (file)
@@ -535,8 +535,8 @@ gst_multiudpsink_render (GstBaseSink * bsink, GstBuffer * buffer)
   if (n_mem == 0)
     goto no_data;
 
-  /* allocated on the stack, the max number of memory blocks is limited so this
-   * should not cause stack overflows */
+  /* pre-allocated, the max number of memory blocks is limited so this
+   * should not cause overflows */
   vec = sink->vec;
   map = sink->map;