aboutsummaryrefslogtreecommitdiff
path: root/mesalib/src/gallium/auxiliary/util/u_cache.c
diff options
context:
space:
mode:
authormarha <marha@users.sourceforge.net>2012-12-05 09:16:39 +0100
committermarha <marha@users.sourceforge.net>2012-12-05 09:16:39 +0100
commit52fc95bab22331376f6a7351fdc07f805bd67610 (patch)
treed93c6fce43dab496004a97a4dfc8bb38e5da6f5a /mesalib/src/gallium/auxiliary/util/u_cache.c
parent6e1f3114a922dc8ac7c1ae0c20d64b8f7a0f5ef7 (diff)
parente82692e521240c5f8592f9ce56c9d5b3d68870ec (diff)
downloadvcxsrv-52fc95bab22331376f6a7351fdc07f805bd67610.tar.gz
vcxsrv-52fc95bab22331376f6a7351fdc07f805bd67610.tar.bz2
vcxsrv-52fc95bab22331376f6a7351fdc07f805bd67610.zip
Merge remote-tracking branch 'origin/released'
* origin/released: mesa git update 5 dec 2012
Diffstat (limited to 'mesalib/src/gallium/auxiliary/util/u_cache.c')
-rw-r--r--mesalib/src/gallium/auxiliary/util/u_cache.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/mesalib/src/gallium/auxiliary/util/u_cache.c b/mesalib/src/gallium/auxiliary/util/u_cache.c
index df08ec302..26aab2bf1 100644
--- a/mesalib/src/gallium/auxiliary/util/u_cache.c
+++ b/mesalib/src/gallium/auxiliary/util/u_cache.c
@@ -183,12 +183,12 @@ util_cache_set(struct util_cache *cache,
void *value)
{
struct util_cache_entry *entry;
- uint32_t hash = cache->hash(key);
+ uint32_t hash;
assert(cache);
if (!cache)
return;
-
+ hash = cache->hash(key);
entry = util_cache_entry_get(cache, hash, key);
if (!entry)
entry = cache->lru.prev;
@@ -218,12 +218,12 @@ util_cache_get(struct util_cache *cache,
const void *key)
{
struct util_cache_entry *entry;
- uint32_t hash = cache->hash(key);
+ uint32_t hash;
assert(cache);
if (!cache)
return NULL;
-
+ hash = cache->hash(key);
entry = util_cache_entry_get(cache, hash, key);
if (!entry)
return NULL;