]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
freetdm: increase size of static buffer for DSO path
authorMoises Silva <moy@sangoma.com>
Thu, 17 Feb 2011 14:17:41 +0000 (09:17 -0500)
committerMoises Silva <moy@sangoma.com>
Thu, 17 Feb 2011 14:22:53 +0000 (09:22 -0500)
libs/freetdm/src/ftdm_io.c

index 260892ada0e65f7a623ca1055eb1c5a92ae5375d..8b1925f84f376d2c26b003f36bc9ae024640604a 100644 (file)
@@ -4866,7 +4866,7 @@ FT_DECLARE(int) ftdm_load_module(const char *name)
 {
        ftdm_dso_lib_t lib;
        int count = 0, x = 0;
-       char path[128] = "";
+       char path[512] = "";
        char *err;
        ftdm_module_t *mod;