bug fix ?, this fix is a mere guesswork, FIXME
This commit is contained in:
parent
930bf53c3f
commit
5edf18bbc8
|
|
@ -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 :
|
||||
|
|
|
|||
|
|
@ -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));
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue