Browse Source

Fix cancelling plugin discovery

Closes #1391

Signed-off-by: falkTX <falktx@falktx.com>
tags/v2.3.0
falkTX 3 years ago
parent
commit
e777c66786
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
2 changed files with 3 additions and 3 deletions
  1. +1
    -2
      source/frontend/carla_database.py
  2. +2
    -1
      source/utils/RtLinkedList.hpp

+ 1
- 2
source/frontend/carla_database.py View File

@@ -317,10 +317,9 @@ def runCarlaDiscovery(itype, stype, filename, tool, wineSettings=None):
else: else:
print("%s - %s (unknown property)" % (line, filename)) print("%s - %s (unknown property)" % (line, filename))


# FIXME?
tmp = gDiscoveryProcess tmp = gDiscoveryProcess
gDiscoveryProcess = None gDiscoveryProcess = None
del gDiscoveryProcess, tmp
del tmp


return plugins return plugins




+ 2
- 1
source/utils/RtLinkedList.hpp View File

@@ -21,7 +21,8 @@
#include "LinkedList.hpp" #include "LinkedList.hpp"


extern "C" { extern "C" {
#include "rtmempool/rtmempool.h"
/* full path as IDE Helper */
#include "../modules/rtmempool/rtmempool.h"
} }


// ----------------------------------------------------------------------- // -----------------------------------------------------------------------


Loading…
Cancel
Save