CorrelationSequence: fix initialization of class members

Change-Id: Ia72395f8805e9e2cd700ad1e559a8aa62124aaec
Closes: CID#149371
This commit is contained in:
Harald Welte 2019-07-21 11:49:44 +02:00 committed by laforge
parent 80ca1de44a
commit 5c6ca1739f
1 changed files with 1 additions and 1 deletions

View File

@ -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)
{
}