Skip to content

Commit

Permalink
Fix segfault in FlowStats (fix #5129)
Browse files Browse the repository at this point in the history
  • Loading branch information
cardigliano committed Mar 25, 2021
1 parent 0315326 commit 4a5068b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/FlowStats.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class FlowStats {
u_int32_t protocols[0x100];
u_int32_t alert_levels[ALERT_LEVEL_MAX_LEVEL];
u_int32_t dscps[64]; // 64 values available for dscp
u_int32_t host_pools[LIMITED_NUM_HOST_POOLS];
u_int32_t host_pools[UNLIMITED_NUM_HOST_POOLS];

public:
FlowStats();
Expand Down

0 comments on commit 4a5068b

Please sign in to comment.