(/home/sate/Testcases/c/cve/wireshark-1.2.0/epan/dissectors/packet-nfs.c) |
| |
| 5273 | | | dissect_nfs3_link_call(tvbuff_t *tvb, int offset, packet_info *pinfo, |
| 5274 | | | proto_tree* tree) |
| 5275 | | | { |
| 5276 | | | guint32 from_hash; |
| 5277 | | | guint32 to_hash; |
| 5278 | | | char *to_name=NULL; |
| 5279 | | | |
| 5280 | | | offset = dissect_nfs_fh3 (tvb, offset, pinfo, tree, "file", &from_hash); |
| 5281 | [+] | | offset = dissect_diropargs3(tvb, offset, pinfo, tree, "link", &to_hash, &to_name); |
Event 1:
dissect_diropargs3() does not initialize to_hash. - This may be because of a failure case or other special case for dissect_diropargs3().
hide
|
|
 |
| 5282 | | | |
| 5283 | [+] | | if (check_col(pinfo->cinfo, COL_INFO)) { |
 |
| 5284 | | | col_append_fstr(pinfo->cinfo, COL_INFO,", From DH:0x%08x To DH:0x%08x/%s", from_hash, to_hash, to_name); |
Uninitialized Variable
to_hash was not initialized. The issue can occur if the highlighted code executes. See related events 1 and 3. Show: All events | Only primary events |
|
| |