Skip to content
Snippets Groups Projects
Commit cadabb38 authored by Sébastien Blin's avatar Sébastien Blin Committed by Adrien Béraud
Browse files

misc: fix valgrind warning (jump based on potential uninitialized values)

Change-Id: I0207e05d9cc39004465a5d273c4321b8d631ee4a
parent bab0fe98
Branches
Tags
No related merge requests found
...@@ -216,8 +216,8 @@ class SocketPair { ...@@ -216,8 +216,8 @@ class SocketPair {
static constexpr unsigned MAX_LIST_SIZE {10}; static constexpr unsigned MAX_LIST_SIZE {10};
mutable std::atomic_bool rtcpPacketLoss_ {false}; mutable std::atomic_bool rtcpPacketLoss_ {false};
double lastSRTS_; double lastSRTS_ {};
uint32_t lastDLSR_; uint32_t lastDLSR_ {};
std::list<double> histoLatency_; std::list<double> histoLatency_;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment