Warning is found by the code analysis tool:
  "the condition 'if(ac && rc < 0)' is redundant: ac"
The @ac variable has been checked before. It can't be a null pointer
here, so remove the redundant condition check.
Signed-off-by: Yunfeng Ye <yeyunfeng@huawei.com>
Signed-off-by: Paul Moore <paul@paul-moore.com>
                rc = kauditd_send_queue(sk, portid,
                                        &audit_hold_queue, UNICAST_RETRIES,
                                        NULL, kauditd_rehold_skb);
-               if (ac && rc < 0) {
+               if (rc < 0) {
                        sk = NULL;
                        auditd_reset(ac);
                        goto main_queue;
                rc = kauditd_send_queue(sk, portid,
                                        &audit_retry_queue, UNICAST_RETRIES,
                                        NULL, kauditd_hold_skb);
-               if (ac && rc < 0) {
+               if (rc < 0) {
                        sk = NULL;
                        auditd_reset(ac);
                        goto main_queue;