On 9/7/22 06:58, Dmitry Bogdanov wrote:
- if (pr_reg->pr_res_key != sa_res_key) + if ((sa_res_key) && (pr_reg->pr_res_key != sa_res_key)) continue;
Please do not introduce superfluous parentheses. Four parentheses can be left out from the above code without affecting readability.
Thanks, Bart.