Browse Source

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

pre-master-46
rlar 16 years ago
parent
commit
5edf18bbc8
  1. 4
      ChangeLog
  2. 2
      src/spicelib/analysis/distoan.c

4
ChangeLog

@ -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 :

2
src/spicelib/analysis/distoan.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…
Cancel
Save