From 3e0ff4594602148a549962eff8070e2c8972d43d Mon Sep 17 00:00:00 2001 From: kevin Date: Fri, 7 Aug 2015 19:03:08 -0400 Subject: [PATCH] cmProc5.c : Fixed bug in call to cmFIRAllocKaiser(). --- cmProc5.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmProc5.c b/cmProc5.c index d1760ef..5bcc3b0 100644 --- a/cmProc5.c +++ b/cmProc5.c @@ -210,7 +210,7 @@ cmGoldSig_t* cmGoldSigAlloc( cmCtx* ctx, cmGoldSig_t* p, const cmGoldSigArg_t* a { cmGoldSig_t* op = cmObjAlloc(cmGoldSig_t,ctx,p); - p->fir = cmFIRAllocKaiser(ctx, NULL, 0, 0, 0, 0, 0, 0, 0 ); + op->fir = cmFIRAllocKaiser(ctx, NULL, 0, 0, 0, 0, 0, 0, 0 ); if( a != NULL ) if( cmGoldSigInit(op,a) != cmOkRC ) @@ -718,7 +718,7 @@ cmRC_t cmReflectCalcFree( cmReflectCalc_t** pp ) cmReflectCalc_t* p = *pp; - cmReflectCalcWrite(p,"/home/kevin/temp/cmkc"); + cmReflectCalcWrite(p,"/Users/kevin/temp/kc"); if((rc = cmReflectCalcFinal(p)) != cmOkRC ) return rc;