Browse Source

Ignore one assertion regarding JACK meta-data (false positive)

Signed-off-by: falkTX <falktx@falktx.com>
tags/v2.2.0-RC1
falkTX 4 years ago
parent
commit
b02fe8ad80
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      source/backend/engine/CarlaEngineJack.cpp

+ 5
- 1
source/backend/engine/CarlaEngineJack.cpp View File

@@ -3472,7 +3472,11 @@ private:

const bool parsed = jackbridge_uuid_parse(uuidstr, &uuid);
jackbridge_free(uuidstr);
CARLA_CUSTOM_SAFE_ASSERT_ONCE_RETURN("JACK meta-data support unavailable", parsed,);

/* if parsing fails, meta-data is not available..
this could be because JACK version is old, or perhaps this is an internal client */
if (! parsed)
return;
}

bool clientBelongsToUs;


Loading…
Cancel
Save