Skip to content
Snippets Groups Projects
Commit 0bdc7cc8 authored by rswindell's avatar rswindell
Browse files

Fixed uninitialized buffer save (for unused sub[].echo_path section) in...

Fixed uninitialized buffer save (for unused sub[].echo_path section) in msgs.cnf. Was causing problems with SCFG/SCFG32.
parent bd9c5ec2
No related branches found
No related tags found
No related merge requests found
......@@ -356,7 +356,7 @@ BOOL DLLCALL write_main_cfg(scfg_t* cfg, int backup_level)
BOOL DLLCALL write_msgs_cfg(scfg_t* cfg, int backup_level)
{
char str[128],c;
char dir[LEN_DIR+1];
char dir[LEN_DIR+1]="";
int i,j,k,file,x;
short n;
long l;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment