aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2019-07-21 11:49:44 +0200
committerlaforge <laforge@gnumonks.org>2019-07-21 15:46:04 +0000
commit5c6ca1739f937fa341c63bb905c2ddb9dbe55c04 (patch)
tree331a1c916b836738c1b32f8ffe43817a5baf8314
parent80ca1de44a62408bdc96245de97c2121df0a5f2f (diff)
CorrelationSequence: fix initialization of class members
Change-Id: Ia72395f8805e9e2cd700ad1e559a8aa62124aaec Closes: CID#149371
-rw-r--r--Transceiver52M/sigProcLib.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Transceiver52M/sigProcLib.cpp b/Transceiver52M/sigProcLib.cpp
index 860bbe4..1042dbb 100644
--- a/Transceiver52M/sigProcLib.cpp
+++ b/Transceiver52M/sigProcLib.cpp
@@ -84,7 +84,7 @@ static Resampler *dnsampler = NULL;
* perform 16-byte memory alignment required by many SSE instructions.
*/
struct CorrelationSequence {
- CorrelationSequence() : sequence(NULL)
+ CorrelationSequence() : sequence(NULL), buffer(NULL), toa(0.0)
{
}