compile fix when atomic refcounting is not available

Original commit message from CVS:
compile fix when atomic refcounting is not available
This commit is contained in:
Steve Baker 2001-07-27 13:12:13 +00:00
parent 695c1a2960
commit 2a4b6618a7

View file

@ -83,7 +83,7 @@ gst_buffer_pool_ref (GstBufferPool *pool)
#else
g_return_if_fail (pool->refcount > 0);
GST_BUFFER_POOL_LOCK (pool);
buffer->refcount++;
pool->refcount++;
GST_BUFFER_POOL_UNLOCK (pool);
#endif
}