DBG: fix format function unregister copy paste error

This commit is contained in:
Duncan Ogilvie 2020-08-16 04:37:37 +02:00
parent af539e345e
commit 81b5b518fd

View File

@ -449,7 +449,7 @@ void pluginexprfuncunregisterall(int pluginHandle)
void pluginformatfuncunregisterall(int pluginHandle)
{
SHARED_ACQUIRE(LockPluginFormatfunctionList);
auto formatFuncList = pluginExprfunctionList; //copy for thread-safety reasons
auto formatFuncList = pluginFormatfunctionList; //copy for thread-safety reasons
SHARED_RELEASE();
auto i = formatFuncList.begin();
while(i != formatFuncList.end())