# HG changeset patch # User Chris Cannam # Date 1462353974 -3600 # Node ID 9f62684e1911c4184e7b97ba3a0673cb0464f3a2 # Parent c7baebf68facab80d2de1b38634b45696d0ea9d3 Tidy + comment diff -r c7baebf68fac -r 9f62684e1911 src/helper.cpp --- a/src/helper.cpp Tue May 03 15:42:09 2016 +0100 +++ b/src/helper.cpp Wed May 04 10:26:14 2016 +0100 @@ -147,25 +147,24 @@ string soname; if (argc != 2) { - cerr << "\nUsage:\n " << argv[0] << " descriptorname\n" - "\nwhere descriptorname is the name of a plugin descriptor symbol to be sought\n" - "in each library (e.g. vampGetPluginDescriptor for Vamp plugins). The list of\n" - "candidate plugin library filenames is read from stdin.\n" << endl; - return 2; + cerr << "\nUsage:\n " << argv[0] << " descriptorname\n" + "\nwhere descriptorname is the name of a plugin descriptor symbol to be sought\n" + "in each library (e.g. vampGetPluginDescriptor for Vamp plugins). The list of\n" + "candidate plugin library filenames is read from stdin.\n" << endl; + return 2; } string descriptor = argv[1]; while (getline(cin, soname)) { - string report = check(soname, descriptor); - - if (report != "") { - cout << "FAILURE|" << soname << "|" << report << endl; - allGood = false; - } else { - cout << "SUCCESS|" << soname << "|" << endl; - } + string report = check(soname, descriptor); + if (report != "") { + cout << "FAILURE|" << soname << "|" << report << endl; + allGood = false; + } else { + cout << "SUCCESS|" << soname << "|" << endl; + } } - + return allGood ? 0 : 1; } diff -r c7baebf68fac -r 9f62684e1911 src/plugincandidates.cpp --- a/src/plugincandidates.cpp Tue May 03 15:42:09 2016 +0100 +++ b/src/plugincandidates.cpp Wed May 04 10:26:14 2016 +0100 @@ -94,6 +94,8 @@ for (unsigned int i = 0; i < dir.count(); ++i) { QString soname = dir.filePath(dir[i]); + // NB this means the library names passed to the helper + // are UTF-8 encoded candidates.push_back(soname.toStdString()); } }