Skip to content

Commit

Permalink
Fix un-initialized variable in constructor
Browse files Browse the repository at this point in the history
Change-Id: I0dfb57b9a8a7fd9bcf5ed17dca72ffc6fe8c6a96
Fixes-Bug: #1542268
  • Loading branch information
praveenkv committed Mar 2, 2016
1 parent 07f3352 commit cf967a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vnsw/agent/pkt/flow_event.h
Expand Up @@ -142,7 +142,7 @@ class FlowEvent {
event_(FLOW_HANDLE_UPDATE), flow_(NULL), pkt_info_(),
db_entry_(NULL), gen_id_(0), flow_key_(), del_rev_flow_(),
flow_handle_(flow_handle), ksync_entry_(entry), ksync_event_(),
ksync_error_(0) {
ksync_error_(0), table_index_(0) {
}

FlowEvent(KSyncEntry *entry) :
Expand Down

0 comments on commit cf967a8

Please sign in to comment.