Please Clang's sanitizer, addendum.
(cherry picked from commit d11c70b2c2a655d112fa72d34c6702e9aa2eff79)
This commit is contained in:
parent
2064e2db08
commit
f50f0c6aa3
@ -346,6 +346,8 @@ void engine_table_doall(ENGINE_TABLE *table, engine_table_doall_cb *cb,
|
||||
ENGINE_PILE_DOALL dall;
|
||||
dall.cb = cb;
|
||||
dall.arg = arg;
|
||||
lh_ENGINE_PILE_doall_arg(&table->piles, LHASH_DOALL_ARG_FN(int_cb),
|
||||
ENGINE_PILE_DOALL, &dall);
|
||||
if (table)
|
||||
lh_ENGINE_PILE_doall_arg(&table->piles,
|
||||
LHASH_DOALL_ARG_FN(int_cb),
|
||||
ENGINE_PILE_DOALL, &dall);
|
||||
}
|
||||
|
@ -140,7 +140,7 @@ static unsigned long added_obj_hash(const ADDED_OBJ *ca)
|
||||
return 0;
|
||||
}
|
||||
ret&=0x3fffffffL;
|
||||
ret|=ca->type<<30L;
|
||||
ret|=((unsigned long)ca->type)<<30L;
|
||||
return(ret);
|
||||
}
|
||||
static IMPLEMENT_LHASH_HASH_FN(added_obj, ADDED_OBJ)
|
||||
|
Loading…
x
Reference in New Issue
Block a user