From 9680cb0fd0fae53cfa93b8524cd25b551a07d25d Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 1 Jun 2012 04:13:44 +0000 Subject: Functioning MIDI input and internals when running as an LV2. Ingen can now be used to build working LV2 synthesizers. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4491 a436a847-0d15-0410-975c-d299462d15a1 --- src/shared/AtomReader.cpp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'src/shared/AtomReader.cpp') diff --git a/src/shared/AtomReader.cpp b/src/shared/AtomReader.cpp index c6ff7e18..cd871079 100644 --- a/src/shared/AtomReader.cpp +++ b/src/shared/AtomReader.cpp @@ -39,7 +39,13 @@ AtomReader::get_atom(const LV2_Atom* in, Raul::Atom& out) if (in) { if (in->type == _uris.atom_URID) { const LV2_Atom_URID* urid = (const LV2_Atom_URID*)in; - out = _forge.alloc_uri(_map.unmap_uri(urid->body)); + const char* uri = _map.unmap_uri(urid->body); + if (uri) { + out = _forge.alloc_uri(_map.unmap_uri(urid->body)); + } else { + Raul::error(Raul::fmt("Unable to unmap URID %1%\n") + % urid->body); + } } else { out = _forge.alloc(in->size, in->type, LV2_ATOM_BODY(in)); } -- cgit v1.2.1