summaryrefslogtreecommitdiff
path: root/sms/sms.i
diff options
context:
space:
mode:
authorJohn Glover <glover.john@gmail.com>2010-12-01 19:52:02 +0000
committerJohn Glover <glover.john@gmail.com>2010-12-01 19:52:02 +0000
commite5625a21b62f11c7eccc0808a77766b50d973ea4 (patch)
treeb2b4787c2639c45ebcb617d62ae11e45f4c32e60 /sms/sms.i
parent5e25edb1b78f28bee09bd7513a80fb500bbd59c4 (diff)
downloadsimpl-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.i6
1 files changed, 3 insertions, 3 deletions
diff --git a/sms/sms.i b/sms/sms.i
index d33c280..ad3fa29 100644
--- a/sms/sms.i
+++ b/sms/sms.i
@@ -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)
{