fix builds with both random and queue quarantine

This commit is contained in:
Daniel Micay 2019-01-02 13:23:49 -05:00
parent 5d3b299209
commit bc2cb5c828
1 changed files with 6 additions and 6 deletions

View File

@ -592,28 +592,28 @@ static inline void deallocate_small(void *p, const size_t *expected_size) {
#if SLAB_QUARANTINE_RANDOM_SIZE > 0
size_t random_index = get_random_u16_uniform(&c->rng, SLAB_QUARANTINE_RANDOM_SIZE);
void *substitute = c->quarantine_random[random_index];
void *random_substitute = c->quarantine_random[random_index];
c->quarantine_random[random_index] = p;
if (substitute == NULL) {
if (random_substitute == NULL) {
mutex_unlock(&c->lock);
return;
}
p = substitute;
p = random_substitute;
#endif
#if SLAB_QUARANTINE_QUEUE_SIZE > 0
void *substitute = c->quarantine_queue[c->quarantine_queue_index];
void *queue_substitute = c->quarantine_queue[c->quarantine_queue_index];
c->quarantine_queue[c->quarantine_queue_index] = p;
c->quarantine_queue_index = (c->quarantine_queue_index + 1) % SLAB_QUARANTINE_QUEUE_SIZE;
if (substitute == NULL) {
if (queue_substitute == NULL) {
mutex_unlock(&c->lock);
return;
}
p = substitute;
p = queue_substitute;
#endif
metadata = get_metadata(c, p);