mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 11:18:08 +02:00
util/simple_mtx: don't set the canary when it can't be checked
Signed-off-by: Eric Engestrom <eric.engestrom@intel.com> Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
parent
d600b19640
commit
1a837e803b
1 changed files with 3 additions and 1 deletions
|
|
@ -71,9 +71,11 @@ simple_mtx_init(simple_mtx_t *mtx, ASSERTED int type)
|
|||
}
|
||||
|
||||
static inline void
|
||||
simple_mtx_destroy(simple_mtx_t *mtx)
|
||||
simple_mtx_destroy(ASSERTED simple_mtx_t *mtx)
|
||||
{
|
||||
#ifndef NDEBUG
|
||||
mtx->val = _SIMPLE_MTX_INVALID_VALUE;
|
||||
#endif
|
||||
}
|
||||
|
||||
static inline void
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue