use tmalloc instead of malloc

This commit is contained in:
rlar 2010-10-27 16:36:34 +00:00
parent cc5b9007a7
commit 29f34fc734
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2010-10-27 Robert Larice
* src/spicelib/devices/bsim3soi/b4soitemp.c :
use tmalloc instead of malloc
2010-10-27 Robert Larice
* src/spicelib/analysis/cktmcrt.c ,
* src/spicelib/analysis/cktnewan.c ,

View File

@ -185,7 +185,7 @@ B4SOItemp(
}
if (Size_Not_Found)
{ pParam = (struct b4soiSizeDependParam *)malloc(
{ pParam = (struct b4soiSizeDependParam *)tmalloc(
sizeof(struct b4soiSizeDependParam));
if (pLastKnot == NULL)
model->pSizeDependParamKnot = pParam;