Fixed uninitialized variable warnings

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401813
This commit is contained in:
Sam Lantinga 2006-05-17 15:08:46 +00:00
parent 851c3b8fbb
commit dc00237efc
3 changed files with 4 additions and 4 deletions

View file

@ -155,7 +155,7 @@ size_t SDL_iconv(SDL_iconv_t cd,
/* For simplicity, we'll convert everything to and from UCS-4 */
char *src, *dst;
size_t srclen, dstlen;
Uint32 ch;
Uint32 ch = 0;
size_t total;
if ( !inbuf || !*inbuf ) {