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
No related branches found
No related tags found
No related merge requests found
......@@ -216,8 +216,8 @@ class SocketPair {
static constexpr unsigned MAX_LIST_SIZE {10};
mutable std::atomic_bool rtcpPacketLoss_ {false};
double lastSRTS_;
uint32_t lastDLSR_;
double lastSRTS_ {};
uint32_t lastDLSR_ {};
std::list<double> histoLatency_;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment