shouldn't fuss about not needing to ref at all
authorThomas Vander Stichele <thomas@apestaart.org>
Mon, 4 Feb 2002 22:33:48 +0000 (22:33 +0000)
committerThomas Vander Stichele <thomas@apestaart.org>
Mon, 4 Feb 2002 22:33:48 +0000 (22:33 +0000)
Original commit message from CVS:
shouldn't fuss about not needing to ref at all

gst/gstbuffer.c

index 841a1fc..5f49f1c 100644 (file)
@@ -347,6 +347,7 @@ void
 gst_buffer_ref_by_count (GstBuffer *buffer, gint count)
 {
   g_return_if_fail (buffer != NULL);
+  if (count == 0) return; /* no error when no need to ref */
   g_return_if_fail (count > 0);
 
 #ifdef HAVE_ATOMIC_H