]> 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:17:41 +0000 (09:17 -0500)
libs/freetdm/src/ftdm_io.c

index 01125e2f61a627ebb2a7672a193fcc2cd4fc94b1..92559a43a500cad235d3bf5df83ae31c37b68d1e 100644 (file)
@@ -4979,7 +4979,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;