(/home/sate/Testcases/c/cve/wireshark-1.2.0/epan/dissectors/packet-nfs.c) |
| |
| 4638 | | | dissect_nfs3_access_call(tvbuff_t *tvb, int offset, packet_info *pinfo, |
| 4639 | | | proto_tree* tree) |
| 4640 | | | { |
| 4641 | | | guint32 hash; |
| 4642 | | | |
| 4643 | [+] | | 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
|
|
 |
| 4644 | | | offset = dissect_access (tvb, offset, tree, "access"); |
| 4645 | | | |
| 4646 | | | if (check_col(pinfo->cinfo, COL_INFO)) { |
Event 5:
Taking true branch. check_col(...) evaluates to true.
hide
|
|
| 4647 | | | col_append_fstr(pinfo->cinfo, COL_INFO,", FH: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 |
|
| |