Update of /cvsroot/htoolkit/port/src/cbits/GTK
In directory sc8-pr-cvs1:/tmp/cvs-serv10544/src/cbits/GTK
Modified Files:
Util.c
Log Message:
Free gAppName and gAppVersion strings after the handleProcessDestroy event
Index: Util.c
===================================================================
RCS file: /cvsroot/htoolkit/port/src/cbits/GTK/Util.c,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -d -r1.16 -r1.17
*** Util.c 1 May 2003 19:35:36 -0000 1.16
--- Util.c 1 May 2003 20:45:32 -0000 1.17
***************
*** 57,60 ****
--- 57,62 ----
gtk_main();
handleProcessDestroy();
+ free(gAppName);
+ free(gAppVersion);
}
|