Skip to content

Commit

Permalink
mp3util.c: Fixed error returns
Browse files Browse the repository at this point in the history
  • Loading branch information
Wohlstand committed Jan 28, 2024
1 parent d37266f commit f3dd301
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/codecs/mp3utils.c
Original file line number Diff line number Diff line change
Expand Up @@ -1156,7 +1156,7 @@ static int probe_riff_container(Mix_MusicMetaTags *out_tags, struct mp3file_t *f
Sint64 data_offset = 0;
Sint64 data_size = 0;
Uint8 chunk[8];
Uint8 *pos = buf, *end = buf + TAGS_INPUT_BUFFER_SIZE;
Uint8 *pos = buf;

magic = SDL_SwapLE32(*(Uint32*)pos);

Expand Down

0 comments on commit f3dd301

Please sign in to comment.