From 91ddf49c874829aa5f9d561d1e321651992ca127 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Marek=20Ol=C5=A1=C3=A1k?= Date: Mon, 22 Sep 2014 22:12:10 +0200 Subject: [PATCH] gallium/rbug: unlock a mutex in rbug_create_query Reviewed-by: Brian Paul --- src/gallium/drivers/rbug/rbug_context.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/gallium/drivers/rbug/rbug_context.c b/src/gallium/drivers/rbug/rbug_context.c index 71bc2168614..026c132786a 100644 --- a/src/gallium/drivers/rbug/rbug_context.c +++ b/src/gallium/drivers/rbug/rbug_context.c @@ -141,12 +141,14 @@ rbug_create_query(struct pipe_context *_pipe, { struct rbug_context *rb_pipe = rbug_context(_pipe); struct pipe_context *pipe = rb_pipe->pipe; + struct pipe_query *query; pipe_mutex_lock(rb_pipe->call_mutex); - return pipe->create_query(pipe, - query_type, - index); + query = pipe->create_query(pipe, + query_type, + index); pipe_mutex_unlock(rb_pipe->call_mutex); + return query; } static void -- 2.30.2