aboutsummaryrefslogtreecommitdiffhomepage
path: root/core/plugin.c
diff options
context:
space:
mode:
Diffstat (limited to 'core/plugin.c')
-rw-r--r--core/plugin.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/plugin.c b/core/plugin.c
index cd85059..01c3342 100644
--- a/core/plugin.c
+++ b/core/plugin.c
@@ -102,7 +102,8 @@ int plugins_load(char* path){
LOG("Failed to allocate memory");
return -1;
}
- snprintf(search_expression, strlen(path) + strlen("*.dll"), "%s*.dll", path);
+ snprintf(search_expression, strlen(path) + strlen("*.dll") + 1, "%s*.dll", path);
+ DBGPF("FindFirstFile search expression: %s", search_expression);
WIN32_FIND_DATA result;
HANDLE hSearch = FindFirstFile(search_expression, &result);