Update of /cvsroot/compbench/CompBenchmarks++/libcompbenchmarks/UI
In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv27589
Modified Files:
UI.cpp UI.h
Log Message:
Previous messages are deleted (fix memory leak).
Index: UI.h
===================================================================
RCS file: /cvsroot/compbench/CompBenchmarks++/libcompbenchmarks/UI/UI.h,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** UI.h 21 Aug 2007 19:53:48 -0000 1.12
--- UI.h 24 Aug 2007 18:37:56 -0000 1.13
***************
*** 25,28 ****
--- 25,30 ----
UIMsg *root;
UIMsg *current;
+ UIMsg *lastTopChild;
+
Mutex mui;
Index: UI.cpp
===================================================================
RCS file: /cvsroot/compbench/CompBenchmarks++/libcompbenchmarks/UI/UI.cpp,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** UI.cpp 21 Aug 2007 19:53:48 -0000 1.13
--- UI.cpp 24 Aug 2007 18:37:56 -0000 1.14
***************
*** 28,31 ****
--- 28,32 ----
root=new UIMsg();
current=0;
+ lastTopChild=0;
}
|