diff options
author | Josh Blum | 2012-09-10 14:12:34 -0700 |
---|---|---|
committer | Josh Blum | 2012-09-10 14:12:34 -0700 |
commit | 55289d5761c9fb07019643438e2e0b767ea97ecf (patch) | |
tree | 705d72a474f1fb5aec42a21a89ae166071f3d68e /lib | |
parent | fc54cf91b4d487ab34d8bc2f67368747c3dc7a07 (diff) | |
download | sandhi-55289d5761c9fb07019643438e2e0b767ea97ecf.tar.gz sandhi-55289d5761c9fb07019643438e2e0b767ea97ecf.tar.bz2 sandhi-55289d5761c9fb07019643438e2e0b767ea97ecf.zip |
moved around/tweaking sbuffer code
Diffstat (limited to 'lib')
-rw-r--r-- | lib/sbuffer.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/sbuffer.cpp b/lib/sbuffer.cpp index 2877b2e..eea323b 100644 --- a/lib/sbuffer.cpp +++ b/lib/sbuffer.cpp @@ -20,6 +20,12 @@ using namespace gnuradio; +SBufferConfig::SBufferConfig(void) +{ + memory = NULL; + length = 0; +} + static void numanuma_mem_deleter(SBuffer &, numanuma::mem *m) { delete m; |