Commit 671ca9ec by Richard Henderson Committed by Richard Henderson

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

From-SVN: r73087
parent 99e7f131
2003-10-30 Richard Henderson <rth@redhat.com>
* cppcharset.c (one_utf8_to_utf16): Initialize 's' to silence warning.
2003-10-30 Ulrich Weigand <uweigand@de.ibm.com> 2003-10-30 Ulrich Weigand <uweigand@de.ibm.com>
* config/s390/s390.c (struct machine_function): Use save_return_addr_p * config/s390/s390.c (struct machine_function): Use save_return_addr_p
......
...@@ -337,7 +337,7 @@ one_utf8_to_utf16 (iconv_t bigend, const uchar **inbufp, size_t *inbytesleftp, ...@@ -337,7 +337,7 @@ one_utf8_to_utf16 (iconv_t bigend, const uchar **inbufp, size_t *inbytesleftp,
uchar **outbufp, size_t *outbytesleftp) uchar **outbufp, size_t *outbytesleftp)
{ {
int rval; int rval;
cppchar_t s; cppchar_t s = 0;
const uchar *save_inbuf = *inbufp; const uchar *save_inbuf = *inbufp;
size_t save_inbytesleft = *inbytesleftp; size_t save_inbytesleft = *inbytesleftp;
uchar *outbuf = *outbufp; uchar *outbuf = *outbufp;
......
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