PatchSet 6426 
Date: 2005/04/27 09:41:24
Author: robilad
Branch: HEAD
Tag: (none) 
Log:
gcc 4 warning fixlet

2005-04-27  Dalibor Topic  <[EMAIL PROTECTED]>

        * kaffe/kaffevm/exception.c (dispatchException):
        Initialize handler to 0 to fix gcc 4 warning.

Members: 
        ChangeLog:1.3954->1.3955 
        kaffe/kaffevm/exception.c:1.96->1.97 

Index: kaffe/ChangeLog
diff -u kaffe/ChangeLog:1.3954 kaffe/ChangeLog:1.3955
--- kaffe/ChangeLog:1.3954      Wed Apr 27 08:50:34 2005
+++ kaffe/ChangeLog     Wed Apr 27 09:41:24 2005
@@ -1,5 +1,10 @@
 2005-04-27  Dalibor Topic  <[EMAIL PROTECTED]>
 
+       * kaffe/kaffevm/exception.c (dispatchException):
+       Initialize handler to 0 to fix gcc 4 warning.
+
+2005-04-27  Dalibor Topic  <[EMAIL PROTECTED]>
+
        * FAQ/FAQ.automake,
        developers/autogen.sh: U�pdated to use libtool 1.5.16.
 
Index: kaffe/kaffe/kaffevm/exception.c
diff -u kaffe/kaffe/kaffevm/exception.c:1.96 
kaffe/kaffe/kaffevm/exception.c:1.97
--- kaffe/kaffe/kaffevm/exception.c:1.96        Sun Apr 24 15:10:46 2005
+++ kaffe/kaffe/kaffevm/exception.c     Wed Apr 27 09:41:24 2005
@@ -416,7 +416,7 @@
         */
        for (frame = baseFrame; frame->meth != ENDOFSTACK; frame++) {
                bool                    foundHandler;
-               uintp                   handler;
+               uintp                   handler = 0;
                Hjava_lang_Object*      obj;
 
                /*

_______________________________________________
kaffe mailing list
[email protected]
http://kaffe.org/cgi-bin/mailman/listinfo/kaffe

Reply via email to