From f1c3d8b3444c7d628642c92c6f8defcbaec16726 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Tue, 19 Mar 2013 13:35:10 +0100 Subject: [PATCH] avutil/add_to_pool: remove unused assgnment Fixed CID991859 Signed-off-by: Michael Niedermayer --- libavutil/buffer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavutil/buffer.c b/libavutil/buffer.c index 854733b32d..fc389a56f6 100644 --- a/libavutil/buffer.c +++ b/libavutil/buffer.c @@ -263,7 +263,7 @@ static void add_to_pool(BufferPoolEntry *buf) while (end->next) end = end->next; - while ((cur = avpriv_atomic_ptr_cas((void * volatile *)&pool->pool, NULL, buf))) { + while (avpriv_atomic_ptr_cas((void * volatile *)&pool->pool, NULL, buf)) { /* pool is not empty, retrieve it and append it to our list */ cur = get_pool(pool); end->next = cur;