(/home/sate/Testcases/c/cve/wireshark-1.2.0/epan/dissectors/packet-nfs.c) |
| |
| 5555 | | | dissect_nfs3_fsstat_call(tvbuff_t *tvb, int offset, packet_info *pinfo, |
| 5556 | | | proto_tree* tree) |
| 5557 | | | { |
| 5558 | | | guint32 hash; |
| 5559 | | | |
| 5560 | [+] | | offset = dissect_nfs_fh3(tvb, offset, pinfo, tree, "object", &hash); |
Event 1:
dissect_nfs_fh3() does not initialize hash. - This may be because of a failure case or other special case for dissect_nfs_fh3().
hide
|
|
 |
| 5561 | | | |
| 5562 | | | if (check_col(pinfo->cinfo, COL_INFO)) { |
Event 5:
Skipping " if". check_col(...) evaluates to false.
hide
|
|
| 5563 | | | col_append_fstr(pinfo->cinfo, COL_INFO,", FH:0x%08x", hash); |
| 5564 | | | } |
| 5565 | | | proto_item_append_text(tree, ", FSSTAT Call DH:0x%08x", hash); |
Uninitialized Variable
hash was not initialized. The issue can occur if the highlighted code executes. See related event 1. Show: All events | Only primary events |
|
| |