[srvx-commits] CVS: services/src global.c,1.52,1.53
Brought to you by:
entrope
|
From: Entrope <en...@us...> - 2003-01-06 01:51:21
|
Update of /cvsroot/srvx/services/src
In directory sc8-pr-cvs1:/tmp/cvs-serv24809/src
Modified Files:
global.c
Log Message:
fix slight memory leak in the Global "list" command
Index: global.c
===================================================================
RCS file: /cvsroot/srvx/services/src/global.c,v
retrieving revision 1.52
retrieving revision 1.53
diff -C2 -r1.52 -r1.53
*** global.c 4 Jan 2003 05:32:21 -0000 1.52
--- global.c 6 Jan 2003 01:51:17 -0000 1.53
***************
*** 490,493 ****
--- 490,494 ----
free(table.contents[nn]);
}
+ free(table.contents[0]);
free(table.contents);
|