summaryrefslogtreecommitdiff
path: root/libs/fst
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2015-04-27 18:23:51 +0200
committerRobin Gareus <robin@gareus.org>2015-04-27 18:23:51 +0200
commit5291400878597a0bd3b1a70578c9edcbf5be21fe (patch)
tree6c9c165dd037691fa7c3f842e496383d282c2c1c /libs/fst
parent7c09182d753ee1cc7c6fc95b0093c7046ccebe78 (diff)
case insensitive VST plugin file extension - fixes #6285
2nd attempt.
Diffstat (limited to 'libs/fst')
-rw-r--r--libs/fst/scanner.cc14
1 files changed, 11 insertions, 3 deletions
diff --git a/libs/fst/scanner.cc b/libs/fst/scanner.cc
index c7cbd897db..d56bdb168c 100644
--- a/libs/fst/scanner.cc
+++ b/libs/fst/scanner.cc
@@ -3,6 +3,8 @@
#include <string.h>
#include <vector>
+#include <glib.h>
+
#include "pbd/pbd.h"
#include "pbd/transmitter.h"
#include "pbd/receiver.h"
@@ -75,7 +77,12 @@ int main (int argc, char **argv) {
char *dllpath = NULL;
if (argc == 3 && !strcmp("-f", argv[1])) {
dllpath = argv[2];
- if (strstr (dllpath, ".so" ) || strstr(dllpath, ".dll")) {
+ const size_t slen = strlen (dllpath);
+ if (
+ (slen > 3 && 0 == g_ascii_strcasecmp (&dllpath[slen-3], ".so"))
+ ||
+ (slen > 4 && 0 == g_ascii_strcasecmp (&dllpath[slen-4], ".dll"))
+ ) {
vstfx_remove_infofile(dllpath);
vstfx_un_blacklist(dllpath);
}
@@ -97,15 +104,16 @@ int main (int argc, char **argv) {
std::vector<VSTInfo *> *infos = 0;
+ const size_t slen = strlen (dllpath);
if (0) { }
#ifdef LXVST_SUPPORT
- else if (strstr (dllpath, ".so")) {
+ else if (slen > 3 && 0 == g_ascii_strcasecmp (&dllpath[slen-3], ".so")) {
infos = vstfx_get_info_lx(dllpath);
}
#endif
#ifdef WINDOWS_VST_SUPPORT
- else if (strstr (dllpath, ".dll")) {
+ else if (slen > 4 && 0 == g_ascii_strcasecmp (&dllpath[slen-4], ".dll")) {
infos = vstfx_get_info_fst(dllpath);
}
#endif