Commit 3de20de7 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Spatializer: init pointer member in constructor

parent 78a16771
...@@ -5,10 +5,12 @@ ...@@ -5,10 +5,12 @@
// This code is public domain // This code is public domain
#include "allpass.hpp" #include "allpass.hpp"
#include <stddef.h>
allpass::allpass() allpass::allpass()
{ {
bufidx = 0; bufidx = 0;
buffer = NULL;
} }
void allpass::setbuffer(float *buf, int size) void allpass::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