2
0
Эх сурвалжийг харах

Fix crash when destroying AudioStreamPlaybackOGGVorbis

Evgeny Zuev 8 жил өмнө
parent
commit
46f003c445

+ 1 - 1
modules/stb_vorbis/audio_stream_ogg_vorbis.cpp

@@ -112,8 +112,8 @@ float AudioStreamPlaybackOGGVorbis::get_length() const {
 
 AudioStreamPlaybackOGGVorbis::~AudioStreamPlaybackOGGVorbis() {
 	if (ogg_alloc.alloc_buffer) {
-		AudioServer::get_singleton()->audio_data_free(ogg_alloc.alloc_buffer);
 		stb_vorbis_close(ogg_stream);
+		AudioServer::get_singleton()->audio_data_free(ogg_alloc.alloc_buffer);
 	}
 }