Fixed potential uninitialized variable usage

main
Sam Lantinga 2022-08-12 20:51:28 -07:00
parent 74bdb2115d
commit 67cb3874ef
1 changed files with 2 additions and 2 deletions

View File

@ -1207,7 +1207,7 @@ SDL_vsscanf(const char *text, const char *fmt, va_list ap)
SDL_FALLTHROUGH;
case 'd':
if (inttype == DO_LONGLONG) {
Sint64 value;
Sint64 value = 0;
advance = SDL_ScanLongLong(text, count, radix, &value);
text += advance;
if (advance && !suppress) {
@ -1216,7 +1216,7 @@ SDL_vsscanf(const char *text, const char *fmt, va_list ap)
++retval;
}
} else {
long value;
long value = 0;
advance = SDL_ScanLong(text, count, radix, &value);
text += advance;
if (advance && !suppress) {