mirror of
https://github.com/jemalloc/jemalloc.git
synced 2026-08-25 00:23:33 +03:00
Rename labels.
Rename labels from FOO to label_foo in order to avoid system macro definitions, in particular OUT and ERROR on mingw. Reported by Mike Hommey.
This commit is contained in:
parent
eae269036c
commit
a1ee7838e1
11 changed files with 129 additions and 129 deletions
|
|
@ -293,11 +293,11 @@ chunk_dealloc_dss(void *chunk, size_t size)
|
|||
madvise(chunk, size, MADV_DONTNEED);
|
||||
|
||||
ret = false;
|
||||
goto RETURN;
|
||||
goto label_return;
|
||||
}
|
||||
|
||||
ret = true;
|
||||
RETURN:
|
||||
label_return:
|
||||
malloc_mutex_unlock(&dss_mtx);
|
||||
return (ret);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue