diff options
Diffstat (limited to 'audio/linuxsampler/files/patch-src_common_Pool.h')
-rw-r--r-- | audio/linuxsampler/files/patch-src_common_Pool.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/audio/linuxsampler/files/patch-src_common_Pool.h b/audio/linuxsampler/files/patch-src_common_Pool.h new file mode 100644 index 000000000000..d87e3dbaf10d --- /dev/null +++ b/audio/linuxsampler/files/patch-src_common_Pool.h @@ -0,0 +1,11 @@ +--- src/common/Pool.h.orig 2008-12-07 00:18:04 UTC ++++ src/common/Pool.h +@@ -393,7 +393,7 @@ class RTList : public RTListBase<T> { + inline Iterator allocAppend() { + if (pPool->poolIsEmpty()) return RTListBase<T>::begin(); + Iterator element = pPool->alloc(); +- append(element); ++ this->append(element); + #if CONFIG_DEVMODE + element.list = this; + #endif // CONFIG_DEVMODE |