OSDN Git Service

* cppcharset.c (one_utf8_to_utf32): Initialize 's' to silence warning.
authorhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 25 Oct 2003 15:12:01 +0000 (15:12 +0000)
committerhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 25 Oct 2003 15:12:01 +0000 (15:12 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72927 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/cppcharset.c

index e4dd113..86e6818 100644 (file)
@@ -1,3 +1,7 @@
+2003-10-25  Jan Hubicka  <jh@suse.cz>
+
+       * cppcharset.c (one_utf8_to_utf32): Initialize 's' to silence warning.
+
 2003-10-25  Eric Botcazou  <ebotcazou@libertysurf.fr>
 
        PR target/12712
 2003-10-25  Eric Botcazou  <ebotcazou@libertysurf.fr>
 
        PR target/12712
index 6794cfe..2eeffca 100644 (file)
@@ -280,7 +280,7 @@ one_utf8_to_utf32 (iconv_t bigend, const uchar **inbufp, size_t *inbytesleftp,
                   uchar **outbufp, size_t *outbytesleftp)
 {
   uchar *outbuf;
                   uchar **outbufp, size_t *outbytesleftp)
 {
   uchar *outbuf;
-  cppchar_t s;
+  cppchar_t s = 0;
   int rval;
 
   /* Check for space first, since we know exactly how much we need.  */
   int rval;
 
   /* Check for space first, since we know exactly how much we need.  */