bug fix ?, this fix is a mere guesswork, FIXME

This commit is contained in:
rlar 2010-10-27 16:30:55 +00:00
parent 930bf53c3f
commit 5edf18bbc8
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2010-10-27 Robert Larice
* src/spicelib/analysis/distoan.c :
bug fix ?, this fix is a mere guesswork, FIXME
2010-10-27 Robert Larice
* src/spicelib/devices/ltra/ltraask.c ,
* src/spicelib/devices/tra/traask.c :

View File

@ -22,7 +22,7 @@ c = *a;
static void
DmemAlloc(double **a, int size)
{
*a = (double *) MALLOC( sizeof(double) * size + 1);
*a = (double *) MALLOC( sizeof(double) * (size + 1));
}