You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When my host returns a pointer to a clap_host_audio_ports struct after receiving the "clap.audio-ports" extension id from the plugin in clap_host->get_extension(), then the plugin later asserts with:
/home/billydm/Dev/clap-plugins/clap-helpers/include/clap/helpers/host-proxy.hxx:38: void clap::helpers::HostProxy<h, l>::getExtension(const T*&, const char*) [with T = clap_host_audio_ports; clap::helpers::MisbehaviourHandler h = clap::helpers::MisbehaviourHandler::Terminate; clap::helpers::CheckingLevel l = clap::helpers::CheckingLevel::Maximal]: Assertion `!ptr' failed.
If my host returns a nullptr instead, then the assert does not happen.
Is the assert(!ptr) assert here at line 38 of host-proxy.hxx a bug?
template <MisbehaviourHandler h, CheckingLevel l>
template <typename T>
void HostProxy<h, l>::getExtension(const T *&ptr, constchar *id) noexcept {
assert(!ptr);
assert(id);
if (_host->get_extension)
ptr = static_cast<const T *>(_host->get_extension(_host, id));
}
The text was updated successfully, but these errors were encountered:
When my host returns a pointer to a
clap_host_audio_ports
struct after receiving the "clap.audio-ports" extension id from the plugin inclap_host->get_extension()
, then the plugin later asserts with:If my host returns a nullptr instead, then the assert does not happen.
Is the
assert(!ptr)
assert here at line 38 of host-proxy.hxx a bug?The text was updated successfully, but these errors were encountered: