Wireshark-bugs: [Wireshark-bugs] [Bug 13044] Buildbot crash output: fuzz-2016-10-25-19751.pcap
Date: Thu, 01 Dec 2016 03:26:33 +0000

Comment # 13 on bug 13044 from
Line 1102 in packet-cops.c is the one that tests cops_call->solicited in

                if (
                    ( (cops_call->op_code == COPS_MSG_REQ) &&
                        (op_code == COPS_MSG_DEC && is_solicited) ) ||
                    ( (cops_call->op_code == COPS_MSG_DEC) &&
                        ( (op_code == COPS_MSG_RPT && is_solicited) ||
                          (op_code == COPS_MSG_DRQ && is_solicited) ) ) ||
                    ( (cops_call->op_code == COPS_MSG_SSQ) &&
                        ( (op_code == COPS_MSG_RPT && is_solicited) ||
                          (op_code == COPS_MSG_DRQ && is_solicited) ||
                          (op_code == COPS_MSG_SSC) ) ) ||
                    ( (cops_call->op_code == COPS_MSG_OPN) &&
                        (op_code == COPS_MSG_CAT ||
                         op_code == COPS_MSG_CC) ) ||
                    ( (cops_call->op_code == COPS_MSG_KA &&
!(cops_call->solicited)) &&
                        (op_code == COPS_MSG_KA && is_solicited) ) ) {
                    cops_call->rsp_num = pinfo->num;
                    break;


You are receiving this mail because:
  • You are watching all bug changes.