Skip to content

Commit 547bd24

Browse files
committed
Fix integer overflow #419
1 parent 94b544e commit 547bd24

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rx.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ class Aggregator : public BaseAggregator
190190
uint32_t count_p_dec_err;
191191
uint32_t count_p_session;
192192
uint32_t count_p_data;
193-
std::set<uint32_t> count_p_uniq;
193+
std::set<uint64_t> count_p_uniq;
194194
uint32_t count_p_fec_recovered;
195195
uint32_t count_p_lost;
196196
uint32_t count_p_bad;

0 commit comments

Comments
 (0)