(/home/sate/Testcases/c/cve/wireshark-1.2.0/epan/dissectors/packet-nfs.c) |
| |
| 4439 | | | dissect_nfs3_getattr_call(tvbuff_t *tvb, int offset, packet_info *pinfo, |
| 4440 | | | proto_tree* tree) |
| 4441 | | | { |
| 4442 | | | guint32 hash; |
| 4443 | | | |
| 4444 | [+] | | 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
|
|
 |
| 4445 | | | |
| 4446 | | | if (check_col(pinfo->cinfo, COL_INFO)) { |
Event 5:
Taking true branch. check_col(...) evaluates to true.
hide
|
|
| 4447 | | | 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 |
|
| |