properly initialize variable (#17555)

This commit is contained in:
Eric Warmenhoven 2025-02-11 10:09:05 -05:00 committed by GitHub
parent 71a4ff07e3
commit b0999db885
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -240,7 +240,7 @@ int filestream_vscanf(RFILE *stream, const char* format, va_list *args)
{
if (*format == '%')
{
int sublen;
int sublen = 0;
char* subfmtiter = subfmt;
bool asterisk = false;