diff options
author | John Glover <glover.john@gmail.com> | 2010-12-01 19:52:02 +0000 |
---|---|---|
committer | John Glover <glover.john@gmail.com> | 2010-12-01 19:52:02 +0000 |
commit | e5625a21b62f11c7eccc0808a77766b50d973ea4 (patch) | |
tree | b2b4787c2639c45ebcb617d62ae11e45f4c32e60 /sms/sms.i | |
parent | 5e25edb1b78f28bee09bd7513a80fb500bbd59c4 (diff) | |
download | simpl-e5625a21b62f11c7eccc0808a77766b50d973ea4.tar.gz simpl-e5625a21b62f11c7eccc0808a77766b50d973ea4.tar.bz2 simpl-e5625a21b62f11c7eccc0808a77766b50d973ea4.zip |
Fixed some memory management problems in the SMS analysis process
Diffstat (limited to 'sms/sms.i')
-rw-r--r-- | sms/sms.i | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -373,7 +373,7 @@ { SMS_SpectralPeaks *s = (SMS_SpectralPeaks *)malloc(sizeof(SMS_SpectralPeaks)); s->nPeaks = n; - if((s->pSpectralPeaks = (SMS_Peak *)calloc (s->nPeaks, sizeof(SMS_Peak))) == NULL) + if((s->pSpectralPeaks = (SMS_Peak *)malloc(n * sizeof(SMS_Peak))) == NULL) { sms_error("could not allocate memory for spectral peaks"); return NULL; @@ -392,7 +392,7 @@ for(i = 0; i < $self->nPeaksFound; i++) pArray[i] = $self->pSpectralPeaks[i].fFreq; } - void getMag( int sizeArray, sfloat *pArray ) + void getMag(int sizeArray, sfloat *pArray ) { if(sizeArray < $self->nPeaksFound) { @@ -403,7 +403,7 @@ for(i = 0; i < $self->nPeaksFound; i++) pArray[i] = $self->pSpectralPeaks[i].fMag; } - void getPhase( int sizeArray, sfloat *pArray ) + void getPhase(int sizeArray, sfloat *pArray ) { if(sizeArray < $self->nPeaksFound) { |