(/home/sate/Testcases/c/cve/wireshark-1.2.0/epan/dissectors/packet-nfs.c) |
| |
| 5000 | | | dissect_nfs3_mkdir_call(tvbuff_t *tvb, int offset, packet_info *pinfo, |
| 5001 | | | proto_tree* tree) |
| 5002 | | | { |
| 5003 | | | guint32 hash; |
| 5004 | | | char *name=NULL; |
| 5005 | | | |
| 5006 | [+] | | offset = dissect_diropargs3(tvb, offset, pinfo, tree, "where", &hash, &name); |
Event 1:
dissect_diropargs3() does not initialize hash. - This may be because of a failure case or other special case for dissect_diropargs3().
hide
|
|
 |
| 5007 | | | offset = dissect_sattr3 (tvb, offset, tree, "attributes"); |
| 5008 | | | |
| 5009 | [+] | | if (check_col(pinfo->cinfo, COL_INFO)) { |
 |
| 5010 | | | col_append_fstr(pinfo->cinfo, COL_INFO,", DH:0x%08x/%s", hash, name); |
Uninitialized Variable
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 |
|
| |