Text   |  XML   |  ReML   |   Visible Warnings:

Redundant Condition  at packet-dcerpc.c:5092

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

dcerpc_init_protocol

(/home/sate/Testcases/c/cve/wireshark-1.2.0/epan/dissectors/packet-dcerpc.c)expand/collapse
Show more  
 5085  dcerpc_init_protocol (void)
 5086  {
 5087          /* structures and data for BIND */
 5088          if (dcerpc_binds){
 5089                  g_hash_table_destroy (dcerpc_binds);
 5090                  dcerpc_binds=NULL;
 5091          }
 5092          if(!dcerpc_binds){
 5093                  dcerpc_binds = g_hash_table_new (dcerpc_bind_hash, dcerpc_bind_equal);
 5094          }
 5095   
 5096          /* structures and data for CALL */
 5097          if (dcerpc_cn_calls){
 5098                  g_hash_table_destroy (dcerpc_cn_calls);
 5099          }
 5100          dcerpc_cn_calls = g_hash_table_new (dcerpc_cn_call_hash, dcerpc_cn_call_equal);
 5101          if (dcerpc_dg_calls){
 5102                  g_hash_table_destroy (dcerpc_dg_calls);
 5103          }
 5104          dcerpc_dg_calls = g_hash_table_new (dcerpc_dg_call_hash, dcerpc_dg_call_equal);
 5105   
 5106          /* structure and data for MATCHED */
 5107          if (dcerpc_matched){
 5108                  g_hash_table_destroy (dcerpc_matched);
 5109          }
 5110          dcerpc_matched = g_hash_table_new (dcerpc_matched_hash, dcerpc_matched_equal);
 5111   
 5112      /* call the registered hooks */
 5113      g_hook_list_invoke(&dcerpc_hooks_init_protos, FALSE /* not may_recurse */);
 5114  }
Show more  




Change Warning 2183.29561 : Redundant Condition

Priority:
State:
Finding:
Owner:
Note: