Skip to content

Commit d5d3c9c

Browse files
committed
- Fix CI error for Ubuntu
1 parent 3a23987 commit d5d3c9c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/plugin-main.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1353,11 +1353,11 @@ void BranchOutputFilter::onStopOutputGracefully()
13531353
// Lock out other output thread to prevent crash
13541354
pthread_mutex_lock(&pluginMutex);
13551355
{
1356-
OBSMutexAutoUnlock locked(&pluginMutex);
1356+
OBSMutexAutoUnlock pluginLocked(&pluginMutex);
13571357

13581358
pthread_mutex_lock(&outputMutex);
13591359
{
1360-
OBSMutexAutoUnlock locked(&outputMutex);
1360+
OBSMutexAutoUnlock outputLocked(&outputMutex);
13611361

13621362
streamingStopping = true;
13631363

0 commit comments

Comments
 (0)