Merge pull request #957 from AlwinEsch/fix-uwp

fix Windows Compiler Warning C4703 on uninitialized pointer in src\meta\csb.c
This commit is contained in:
bnnm 2021-09-21 23:35:18 +02:00 committed by GitHub
commit 8a13904615
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,7 +13,7 @@ VGMSTREAM* init_vgmstream_csb(STREAMFILE* sf) {
utf_context *utf_sdl = NULL;
int total_subsongs, target_subsong = sf->stream_index;
uint8_t fmt = 0;
const char* stream_name;
const char* stream_name = NULL;
/* checks */