1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-22 00:35:15 +00:00

- Fix crash when decoding on 64 bit archs

- Bump PORTREVISION

Reported by:	Jonathan Wilkie <silkie@gotadsl.co.uk>
This commit is contained in:
Markus Brueffer 2010-04-19 15:50:21 +00:00
parent 4ffe735846
commit c9a10c8a17
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=252915
2 changed files with 12 additions and 1 deletions

View File

@ -6,7 +6,7 @@
PORTNAME= k3bmonkeyaudioplugin
PORTVERSION= 3.1
PORTREVISION= 5
PORTREVISION= 6
CATEGORIES= audio kde
MASTER_SITES= SF/k3b/${PORTNAME}/${PORTVERSION}

View File

@ -0,0 +1,11 @@
--- src/libmonkeyaudio/APEDecompress.cpp.orig 2010-04-18 21:28:34.000000000 +0200
+++ src/libmonkeyaudio/APEDecompress.cpp 2010-04-18 21:28:51.000000000 +0200
@@ -369,7 +369,7 @@
*****************************************************************************************/
intptr_t CAPEDecompress::GetInfo(APE_DECOMPRESS_FIELDS Field, intptr_t nParam1, intptr_t nParam2)
{
- int nRetVal = 0;
+ intptr_t nRetVal = 0;
BOOL bHandled = TRUE;
switch (Field)