mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 45953 - Update to latest liboggplay version to fix bad free
This commit is contained in:
parent
9a041f597e
commit
bb7c88c142
@ -5,4 +5,4 @@ the Mozilla build system.
|
||||
|
||||
http://svn.annodex.net/liboggplay/trunk/
|
||||
|
||||
The svn revision number used was r3693.
|
||||
The svn revision number used was r3729.
|
||||
|
@ -74,7 +74,7 @@
|
||||
#define STDC_HEADERS 1
|
||||
|
||||
/* Version number of package */
|
||||
#define VERSION "0.0.1.svn"
|
||||
#define VERSION "0.0.1"
|
||||
|
||||
/* Define to 1 if your processor stores words with the most significant byte
|
||||
first (like Motorola and SPARC, unlike Intel and VAX). */
|
||||
|
@ -82,7 +82,7 @@ oggplay_seek(OggPlay *me, ogg_int64_t milliseconds) {
|
||||
* this will occur as soon as the thread calls oggplay_buffer_release_next
|
||||
*/
|
||||
|
||||
trash = malloc(sizeof(OggPlaySeekTrash));
|
||||
trash = calloc(sizeof(OggPlaySeekTrash), 1);
|
||||
|
||||
/*
|
||||
* store the old buffer in it next.
|
||||
|
Loading…
Reference in New Issue
Block a user