[PlanetCCRMA] Hydrogen 0.9.3 for fc4?

Anthony Green green@redhat.com
Fri Mar 30 13:53:01 2007


This is a multi-part message in MIME format.
--------------000108030108060400050209
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding: 7bit

The hydrogen I have under review for Fedora has the following 
crash-fixing patch.  I don't know if it will fix the crash you're seeing 
or not, but I thought I'd mention it.

AG


--------------000108030108060400050209
Content-Type: text/x-patch;
 name="hydrogen-null-sample.patch"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
 filename="hydrogen-null-sample.patch"

--- src/lib/Hydrogen.cpp~	2006-01-06 06:15:50.000000000 -0800
+++ src/lib/Hydrogen.cpp	2006-07-22 16:41:44.000000000 -0700
@@ -2491,9 +2491,8 @@
 					Sample *pSample = Sample::load( sSampleFilename );
 	//				pSample->setFilename( pNewSample->getFilename() );	// riuso il path del nuovo sample (perche' e' gia relativo al path del drumkit)
 					if (pSample == NULL) {
-						errorLog( "[loadDrumkit] Error Loading drumkit: NULL sample, now using /emptySample.wav" );
-						pSample->m_sFilename = string(DataPath::getDataPath() ).append( "/emptySample.wav" );
-						pSample = Sample::load( pSample->m_sFilename );
+						errorLog( "[loadDrumkit] Error Loading drumkit: " + sSampleFilename + " sample, now using /emptySample.wav" );
+						pSample = Sample::load( string(DataPath::getDataPath() ).append( "/emptySample.wav" ));
 					}
 					InstrumentLayer *pLayer = new InstrumentLayer( pSample );
 					pLayer->m_fStartVelocity = pNewLayer->m_fStartVelocity;

--------------000108030108060400050209
Content-Type: text/x-vcard; charset=utf-8;
 name="green.vcf"
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment;
 filename="green.vcf"

begin:vcard
fn:Anthony Green
n:Green;Anthony
org:Red Hat, Inc.
email;internet:green@redhat.com
tel;cell:(650) 207-7122
x-mozilla-html:FALSE
version:2.1
end:vcard


--------------000108030108060400050209--