aboutsummaryrefslogtreecommitdiffhomepage
path: root/plugin.c
diff options
context:
space:
mode:
authorcbdev <cb@cbcdn.com>2019-12-22 13:19:37 +0100
committercbdev <cb@cbcdn.com>2019-12-22 13:19:37 +0100
commita305f5d9b2794315fb536dbe4d4949f1cf26aeea (patch)
tree1e9180b69347396a0f71e2ca1fb3488c16a01c45 /plugin.c
parentb5d5f26835ea8840fc3aedd38780f3025d2959b3 (diff)
parent172d8a210f7df36a26b01d2fe018ff4c959a6987 (diff)
downloadmidimonster-a305f5d9b2794315fb536dbe4d4949f1cf26aeea.tar.gz
midimonster-a305f5d9b2794315fb536dbe4d4949f1cf26aeea.tar.bz2
midimonster-a305f5d9b2794315fb536dbe4d4949f1cf26aeea.zip
Merge branch 'master' into rtpmidi
Diffstat (limited to 'plugin.c')
-rw-r--r--plugin.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/plugin.c b/plugin.c
index c7c9812..56d6651 100644
--- a/plugin.c
+++ b/plugin.c
@@ -30,6 +30,11 @@ static int plugin_attach(char* path, char* file){
char* path_separator = "/";
#endif
+ if(!path || !file || !strlen(path)){
+ fprintf(stderr, "Invalid plugin loader path\n");
+ return 1;
+ }
+
lib = calloc(strlen(path) + strlen(file) + 2, sizeof(char));
if(!lib){
fprintf(stderr, "Failed to allocate memory\n");
@@ -37,7 +42,7 @@ static int plugin_attach(char* path, char* file){
}
snprintf(lib, strlen(path) + strlen(file) + 2, "%s%s%s",
path,
- (path[strlen(path)] == path_separator[0]) ? "" : path_separator,
+ (path[strlen(path) - 1] == path_separator[0]) ? "" : path_separator,
file);
handle = dlopen(lib, RTLD_NOW);