zynaddsubfx

ZynAddSubFX open source synthesizer
Log | Files | Refs | Submodules | LICENSE

commit b165f7089dc40ebc2c56180386865c26bb5760bb
parent 39f039295adc128bfd416e0f4e194dceac35bc4d
Author: fundamental <[email protected]>
Date:   Fri, 27 Feb 2015 18:57:09 -0500

MiddleWare: Fix Bad Oscilgen Pointer

Diffstat:
Msrc/Misc/MiddleWare.cpp | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/Misc/MiddleWare.cpp b/src/Misc/MiddleWare.cpp @@ -342,7 +342,7 @@ struct NonRtObjStore void extractPart(Part *part, int i) { for(int j=0; j < NUM_KIT_ITEMS; ++j) { - auto &obj = part->kit[i]; + auto &obj = part->kit[j]; extractAD(obj.adpars, i, j); extractPAD(obj.padpars, i, j); } @@ -937,6 +937,8 @@ bool MiddleWareImpl::handleOscil(string path, const char *msg, void *v) memset(buffer, 0, sizeof(buffer)); DummyDataObj d(buffer, 1024, v, cb, ui, osc); strcpy(buffer, path.c_str()); + if(!v) + return true; for(auto &p:OscilGen::ports.ports) { if(strstr(p.name,msg) && strstr(p.metadata, "realtime") &&