diff options
author | David Robillard <d@drobilla.net> | 2010-11-26 00:59:54 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2010-11-26 00:59:54 +0000 |
commit | c1141307a2b75a4c12424476307c4dd4244ecac6 (patch) | |
tree | bcc4324ade1c64ff436a46c88220ada0e56a8720 /raul/List.hpp | |
parent | 59675ddad03099bcb35e33326f810ad0e2c5077b (diff) | |
download | raul-c1141307a2b75a4c12424476307c4dd4244ecac6.tar.gz raul-c1141307a2b75a4c12424476307c4dd4244ecac6.tar.bz2 raul-c1141307a2b75a4c12424476307c4dd4244ecac6.zip |
Fix race crash processing event list (Raul::ListImpl seriously needs an audit and heavy testing...)
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2673 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'raul/List.hpp')
-rw-r--r-- | raul/List.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/raul/List.hpp b/raul/List.hpp index 199756f..27e88f5 100644 --- a/raul/List.hpp +++ b/raul/List.hpp @@ -144,7 +144,7 @@ public: typename List<T>::Node* _listnode; }; - void chop_front(List<T>& front, size_t front_size, Node* new_head); + void chop_front(List<T>& front, size_t front_size, Node* front_tail); Node* erase(const iterator iter); |