mirror of
https://github.com/yawut/SDL.git
synced 2026-09-07 08:36:19 -05:00
Fixed uninitialized variable warnings
This commit is contained in:
@@ -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 ) {
|
||||
|
||||
Reference in New Issue
Block a user