Commit e963109f authored by Andy Polyakov's avatar Andy Polyakov Committed by Emilia Kasper
Browse files

Please Clang's sanitizer, addendum.



Reviewed-by: default avatarRich Salz <rsalz@openssl.org>
parent da23637e
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -351,6 +351,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),
    if (table)
        lh_ENGINE_PILE_doall_arg(&table->piles,
                                 LHASH_DOALL_ARG_FN(int_cb),
                                 ENGINE_PILE_DOALL, &dall);
}
+1 −1
Original line number Diff line number Diff line
@@ -142,7 +142,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);
}