Update of /cvsroot/srvx/services/src
In directory usw-pr-cvs1:/tmp/cvs-serv3190/src
Modified Files:
conf.c
Log Message:
only free old conf database if it exists
Index: conf.c
===================================================================
RCS file: /cvsroot/srvx/services/src/conf.c,v
retrieving revision 1.24
retrieving revision 1.25
diff -C2 -r1.24 -r1.25
*** conf.c 2001/10/14 19:45:40 1.24
--- conf.c 2001/10/15 14:33:12 1.25
***************
*** 68,72 ****
return 0;
}
! free_database(conf_db);
conf_db = new_conf;
conf_call_reload_funcs();
--- 68,72 ----
return 0;
}
! if (conf_db) free_database(conf_db);
conf_db = new_conf;
conf_call_reload_funcs();
|