diff capnproto/VampnProto.h @ 24:533ca5ca3404

More on reading and writing json messages
author Chris Cannam <c.cannam@qmul.ac.uk>
date Mon, 23 May 2016 16:09:25 +0100
parents d678cd00e593
children 5b9690d18241
line wrap: on
line diff
--- a/capnproto/VampnProto.h	Fri May 20 18:05:02 2016 +0100
+++ b/capnproto/VampnProto.h	Mon May 23 16:09:25 2016 +0100
@@ -658,10 +658,11 @@
                            const std::vector<Vamp::HostExt::PluginStaticData> &d) {
         b.setSuccess(errorText == "");
         b.setErrorText(errorText);
-        auto r = b.getResponse().initList(d.size());
+        auto r = b.getResponse().initList();
+        auto p = r.initPlugins(d.size());
         for (size_t i = 0; i < d.size(); ++i) {
-            auto rd = r[i];
-            buildPluginStaticData(rd, d[i]);
+            auto pd = p[i];
+            buildPluginStaticData(pd, d[i]);
         }
     }