Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 601056 Details for
Bug 841322
libmikmod causes xbmc to crash
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
second MikMod-related patch
SDL_mixer-MikMod-2.patch (text/plain), 1.13 KB, created by
Jan Dvořák
on 2012-07-29 16:15:55 UTC
(
hide
)
Description:
second MikMod-related patch
Filename:
MIME Type:
Creator:
Jan Dvořák
Created:
2012-07-29 16:15:55 UTC
Size:
1.13 KB
patch
obsolete
> ># HG changeset patch ># User Sam Lantinga <slouken@libsdl.org> ># Date 1343000017 25200 ># Node ID 2ebb0d016f277f7f643d8a66ed0e1099e10d1fba ># Parent 56cad6484b04f83c8d42428c755a046678506436 >Fixed normal linking with libmikmod and linking with earlier versions of libmikmod. > >diff -r 56cad6484b04 -r 2ebb0d016f27 dynamic_mod.c >--- a/dynamic_mod.c Sun Jul 22 16:13:27 2012 -0700 >+++ b/dynamic_mod.c Sun Jul 22 16:33:37 2012 -0700 >@@ -97,8 +97,8 @@ > (void (*)(void*)) > SDL_LoadFunction(mikmod.handle, "MikMod_free"); > if ( mikmod.MikMod_free == NULL ) { >- SDL_UnloadObject(mikmod.handle); >- return -1; >+ /* libmikmod 3.1 and earlier doesn't have it */ >+ mikmod.MikMod_free = free; > } > mikmod.Player_Active = > (BOOL (*)(void)) >@@ -246,6 +246,11 @@ > mikmod.MikMod_RegisterDriver = MikMod_RegisterDriver; > mikmod.MikMod_errno = &MikMod_errno; > mikmod.MikMod_strerror = MikMod_strerror; >+#if LIBMIKMOD_VERSION < ((3<<16)|(2<<8)) >+ mikmod.MikMod_free = free; >+#else >+ mikmod.MikMod_free = MikMod_free; >+#endif > mikmod.Player_Active = Player_Active; > mikmod.Player_Free = Player_Free; > mikmod.Player_LoadGeneric = Player_LoadGeneric; >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 841322
:
598942
|
601054
|
601055
| 601056