(/home/sate/Testcases/c/cve/wireshark-1.2.0/epan/dissectors/packet-dcerpc-fileexp.c) |
| |
| 3623 | | | fileexp_dissect_makedir_resp |
| 3624 | | | (tvbuff_t * |
| 3625 | | | tvb, int offset, packet_info * pinfo, proto_tree * tree, guint8 *drep) |
| 3626 | | | { |
| 3627 | | | dcerpc_info *di; |
| 3628 | | | |
| 3629 | | | di = pinfo->private_data; |
| 3630 | | | if (di->conformant_run) |
Event 1:
Skipping " if". di->conformant_run evaluates to false.
hide
|
|
| 3631 | | | { |
| 3632 | | | return offset; |
| 3633 | | | } |
| 3634 | | | |
| 3635 | | | |
| 3636 | | | |
| 3637 | | | |
| 3638 | | | |
| 3639 | | | |
| 3640 | | | |
| 3641 | | | |
| 3642 | | | offset = |
| 3643 | | | dissect_ndr_pointer (tvb, offset, pinfo, tree, drep, dissect_afsFid, |
| 3644 | | | NDR_POINTER_REF, "afsFid: ", -1); |
| 3645 | | | offset = |
| 3646 | | | dissect_ndr_pointer (tvb, offset, pinfo, tree, drep, dissect_fetchstatus, |
| 3647 | | | NDR_POINTER_REF, "FetchStatus: ", -1); |
| 3648 | | | offset = |
| 3649 | | | dissect_ndr_pointer (tvb, offset, pinfo, tree, drep, dissect_fetchstatus, |
| 3650 | | | NDR_POINTER_REF, "FetchStatus: ", -1); |
| 3651 | | | offset = |
| 3652 | | | dissect_ndr_pointer (tvb, offset, pinfo, tree, drep, dissect_afstoken, |
| 3653 | | | NDR_POINTER_REF, "afsToken: ", -1); |
| 3654 | | | offset = |
| 3655 | | | dissect_ndr_pointer (tvb, offset, pinfo, tree, drep, dissect_volsync, |
| 3656 | | | NDR_POINTER_REF, "VolSync: ", -1); |
| 3657 | | | |
| 3658 | [+] | | MACRO_ST_CLEAR ("MakeDir reply");
x /home/sate/Testcases/c/cve/wireshark-1.2.0/epan/dissectors/packet-dcerpc-fileexp.c |
| |
324 | #define MACRO_ST_CLEAR(name) \ |
325 | { \ |
326 | guint32 st; \ |
327 | const char *st_str; \ |
328 | offset = dissect_ndr_uint32 (tvb, offset, pinfo, tree, drep, hf_error_st, &st); \ |
329 | st_str = val_to_str (st, dce_error_vals, "%u"); \ |
330 | if (st){ \ |
331 | if (check_col (pinfo->cinfo, COL_INFO)) \ |
332 | col_add_fstr (pinfo->cinfo, COL_INFO, "%s st:%s ", name, st_str); \ |
333 | }else{ \ |
334 | if (check_col (pinfo->cinfo, COL_INFO)) \ |
335 | col_append_fstr (pinfo->cinfo, COL_INFO, " st:%s ", st_str); \ |
336 | } \ |
337 | } |
| |
|
Event 2:
dissect_ndr_uint32() does not initialize st. - This may be because of a failure case or other special case for dissect_ndr_uint32().
hide
|
|
 |
| |