Wireshark-bugs: [Wireshark-bugs] [Bug 13231] Buildbot crash output: fuzz-2016-12-09-20162.pcap

Date: Sat, 10 Dec 2016 17:48:28 +0000

Comment # 1 on bug 13231 from
That's

        /* fd_head->frame is the maximum of the frame numbers of all the
         * fragments added to the reassembly. */
        if (fd->frame > fd_head->frame)
                fd_head->frame = fd->frame;

which comes after

        /* create new fd describing this fragment */
        fd = g_slice_new(fragment_item);
        fd->next = NULL;
        fd->flags = 0;
        fd->frame = pinfo->num;
        fd->offset = frag_number_work;
        fd->len  = frag_data_len;
        fd->tvb_data = NULL;
        fd->error = NULL;

so fd->frame appears to be set, unless, somehow, pinfo->num isn't set.  That
leaves fd_head->frame.


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