Wireshark-bugs: [Wireshark-bugs] [Bug 12034] "Conditional jump or move depends on uninitialised
Date: Tue, 19 Jan 2016 20:40:31 +0000

Comment # 1 on bug 12034 from
Both of those complaints are for tests of the desegment_body argument to
req_resp_hdrs_do_reassembly(); presumably "uninitializedness" propagates from
variable to variable, because a function argument is always "initialized" and
could only be "uninitialized" if it was set from a value that was itself
"uninitialized".

That argument is set from the _expression_

        gboolean try_desegment_body = (http_desegment_body &&
            (!(conv_data->request_method &&
g_str_equal(conv_data->request_method, "HEAD"))) &&
            ((tcpinfo == NULL) || (tcpinfo->fin == FALSE)));


so presumably one of the variables in that _expression_ is "uninitialized".


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