mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
19 lines
623 B
Diff
19 lines
623 B
Diff
diff --git a/media/libvorbis/lib/vorbis_info.c b/media/libvorbis/lib/vorbis_info.c
|
|
index 30088d8..8583224 100644
|
|
--- a/media/libvorbis/lib/vorbis_info.c
|
|
+++ b/media/libvorbis/lib/vorbis_info.c
|
|
@@ -628,12 +628,12 @@ int vorbis_analysis_headerout(vorbis_dsp_state *v,
|
|
oggpack_writeclear(&opb);
|
|
return(0);
|
|
err_out:
|
|
- oggpack_writeclear(&opb);
|
|
memset(op,0,sizeof(*op));
|
|
memset(op_comm,0,sizeof(*op_comm));
|
|
memset(op_code,0,sizeof(*op_code));
|
|
|
|
if(b){
|
|
+ oggpack_writeclear(&opb);
|
|
if(b->header)_ogg_free(b->header);
|
|
if(b->header1)_ogg_free(b->header1);
|
|
if(b->header2)_ogg_free(b->header2);
|