Update of /cvsroot/libufo/ufo-0.5/src/ui
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5564/src/ui
Modified Files:
ucss.cpp
Log Message:
Fixed valgrind warning about possible unconditional jump.
Index: ucss.cpp
===================================================================
RCS file: /cvsroot/libufo/ufo-0.5/src/ui/ucss.cpp,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** ucss.cpp 2 Sep 2005 14:26:13 -0000 1.5
--- ucss.cpp 11 Oct 2005 14:31:03 -0000 1.6
***************
*** 84,89 ****
bool
ufo_css_eatComment(std::istream & stream) {
! char comment1;
! char comment2;
bool comment_eaten = false;
--- 84,89 ----
bool
ufo_css_eatComment(std::istream & stream) {
! char comment1 = 0;
! char comment2 = 0;
bool comment_eaten = false;
|