[srvx-commits] CVS: services/src helpserv.c,1.43,1.44
Brought to you by:
entrope
|
From: Entrope <en...@us...> - 2002-10-28 01:56:04
|
Update of /cvsroot/srvx/services/src
In directory usw-pr-cvs1:/tmp/cvs-serv12708/src
Modified Files:
helpserv.c
Log Message:
fix memory leak when writing database
Index: helpserv.c
===================================================================
RCS file: /cvsroot/srvx/services/src/helpserv.c,v
retrieving revision 1.43
retrieving revision 1.44
diff -C2 -r1.43 -r1.44
*** helpserv.c 26 Oct 2002 16:40:55 -0000 1.43
--- helpserv.c 28 Oct 2002 01:56:01 -0000 1.44
***************
*** 2974,2977 ****
--- 2974,2978 ----
}
saxdb_write_string_list(ctx, KEY_PAGE_DEST, slist);
+ free_string_list(slist);
for (pagesrc=0; pagesrc<PGSRC_COUNT; pagesrc++) {
const char *src = page_type_names[hs->page_types[pagesrc]];
|