samba-4.7.2/source4/heimdal/lib/hcrypto/libtommath/bn_mp_div.c:45]: (style) Suspicious condition (assignment + comparison); Clarify expression with parentheses. Source code is if ((res = mp_init_multi(&ta, &tb, &tq, &q, NULL) != MP_OKAY)) { Maybe better code: if ((res = mp_init_multi(&ta, &tb, &tq, &q, NULL)) != MP_OKAY) {