Text   |  XML   |  ReML   |   Visible Warnings:

Uninitialized Variable  at packet-dcom.c:1082

No properties have been set. | edit properties
Jump to warning location ↓ warning details...
Show Events | Options

dissect_dcom_HRESULT

(/home/sate/Testcases/c/cve/wireshark-1.2.0/epan/dissectors/packet-dcom.c)expand/collapse
Show more  
 1064  dissect_dcom_HRESULT(tvbuff_t *tvb, int offset, packet_info *pinfo,
 1065                                           proto_tree *tree, guint8 *drep,  
 1066                                           guint32 * pu32HResult)
 1067  {
 1068          guint32 u32HResult;
 1069          proto_item *item = NULL;
 1070   
 1071          /* dissect the DWORD, but don't add to tree */
 1072          offset = dissect_dcom_DWORD(tvb, offset, pinfo, NULL /*tree*/, drep,  
 1073[+]                     hf_dcom_hresult, &u32HResult);
 1074   
 1075          if (tree) {
 1076                  /* special formatted output of indexed value */
 1077                  item = proto_tree_add_item (tree, hf_dcom_hresult, tvb, offset-4, 4, (drep[0] & 0x10));
 1078          }
 1079   
 1080          /* expert info only if severity is set */
 1081          /* XXX - move this to the callers of this function, to provide a more detailed error output */
 1082          if(u32HResult & 0x80000000) {
Show more  




Change Warning 2210.33802 : Uninitialized Variable

Priority:
State:
Finding:
Owner:
Note: