(/home/sate/Testcases/c/cve/wireshark-1.2.0/epan/dissectors/packet-nfs.c) |
| |
| 5220 | | | dissect_nfs3_rename_call(tvbuff_t *tvb, int offset, packet_info *pinfo, |
| 5221 | | | proto_tree* tree) |
| 5222 | | | { |
| 5223 | | | guint32 from_hash; |
| 5224 | | | char *from_name=NULL; |
| 5225 | | | guint32 to_hash; |
| 5226 | | | char *to_name=NULL; |
| 5227 | | | |
| 5228 | | | offset = dissect_diropargs3(tvb, offset, pinfo, tree, "from", &from_hash, &from_name); |
| 5229 | [+] | | offset = dissect_diropargs3(tvb, offset, pinfo, tree, "to", &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
|
|
 |
| 5230 | | | |
| 5231 | [+] | | if (check_col(pinfo->cinfo, COL_INFO)) { |
 |
| 5232 | | | col_append_fstr(pinfo->cinfo, COL_INFO,", From DH:0x%08x/%s To DH:0x%08x/%s", from_hash, from_name, 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 |
|
| |