SDL_mixer: music_ogg.c: no need to zero the callbacks anymore. (2bf94)

From 2bf94b9a29abe0b6146cfa606b078d044683577f Mon Sep 17 00:00:00 2001
From: Ozkan Sezer <[EMAIL REDACTED]>
Date: Sun, 29 Oct 2023 01:30:40 +0300
Subject: [PATCH] music_ogg.c: no need to zero the callbacks anymore.

---
 src/codecs/music_ogg.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/src/codecs/music_ogg.c b/src/codecs/music_ogg.c
index 64558f1a..eec2d808 100644
--- a/src/codecs/music_ogg.c
+++ b/src/codecs/music_ogg.c
@@ -253,7 +253,6 @@ static void *OGG_CreateFromRW(SDL_RWops *src, SDL_bool freesrc)
     music->volume = MIX_MAX_VOLUME;
     music->section = -1;
 
-    SDL_zero(callbacks);
     callbacks.read_func = sdl_read_func;
     callbacks.seek_func = sdl_seek_func;
     callbacks.close_func = sdl_close_func;
@@ -568,4 +567,3 @@ Mix_MusicInterface Mix_MusicInterface_OGG =
 
 #endif /* MUSIC_OGG */
 
-/* vi: set ts=4 sw=4 expandtab: */