Commit 78a16771 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Spatializer: init pointer member in constructor

parent e91ea1f9
...@@ -5,11 +5,13 @@ ...@@ -5,11 +5,13 @@
// This code is public domain // This code is public domain
#include "comb.hpp" #include "comb.hpp"
#include <stddef.h>
comb::comb() comb::comb()
{ {
filterstore = 0; filterstore = 0;
bufidx = 0; bufidx = 0;
buffer = NULL;
} }
void comb::setbuffer(float *buf, int size) void comb::setbuffer(float *buf, int size)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment