Index: apps/app_txtcidname.c =================================================================== RCS file: /usr/cvsroot/asterisk/apps/app_txtcidname.c,v retrieving revision 1.6 diff -u -p -r1.6 app_txtcidname.c --- apps/app_txtcidname.c 3 Jul 2004 05:22:21 -0000 1.6 +++ apps/app_txtcidname.c 13 Jul 2004 22:20:04 -0000 @@ -40,7 +40,7 @@ static char *descrip = #define ENUM_CONFIG "enum.conf" -static char h323driver[80]; +static char h323driver[80] = ""; #define H323DRIVERDEFAULT "H323" STANDARD_LOCAL_USER; @@ -90,9 +90,9 @@ static int load_config(void) cfg = ast_load(ENUM_CONFIG); if (cfg) { if (!(s=ast_variable_retrieve(cfg, "general", "h323driver"))) { - strcpy(h323driver, H323DRIVERDEFAULT); + strncpy(h323driver, H323DRIVERDEFAULT, sizeof(h323driver) - 1); } else { - strcpy(h323driver, s); + strncpy(h323driver, s, sizeof(h323driver) - 1); } ast_destroy(cfg); return 0;