SVN commit 578250 by ctennis: Clean up a small mem leak (will backport to 3.5 branch) CCMAIL: kde-bindings@kde.org M +1 -0 handlers.cpp --- trunk/KDE/kdebindings/qtruby/rubylib/qtruby/handlers.cpp #578249:578250 @@ -588,6 +588,7 @@ Smoke::Index ccMeth = o->smoke->findMethod(o->classId, ccId); if(!ccMeth) { + delete[] ccArg; return 0; } Smoke::Index method = o->smoke->methodMaps[ccMeth].method;