Commit bd18496b by Jan Hubicka Committed by Jan Hubicka

* cppcharset.c (one_utf8_to_utf32): Initialize 's' to silence warning.

From-SVN: r72927
parent b3cd99cd
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> 2003-10-25 Eric Botcazou <ebotcazou@libertysurf.fr>
PR target/12712 PR target/12712
......
...@@ -280,7 +280,7 @@ one_utf8_to_utf32 (iconv_t bigend, const uchar **inbufp, size_t *inbytesleftp, ...@@ -280,7 +280,7 @@ one_utf8_to_utf32 (iconv_t bigend, const uchar **inbufp, size_t *inbytesleftp,
uchar **outbufp, size_t *outbytesleftp) uchar **outbufp, size_t *outbytesleftp)
{ {
uchar *outbuf; uchar *outbuf;
cppchar_t s; cppchar_t s = 0;
int rval; int rval;
/* Check for space first, since we know exactly how much we need. */ /* Check for space first, since we know exactly how much we need. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment