Changed all malloc() to calloc()

This commit is contained in:
2010-07-12 19:32:41 +00:00
parent 9d2a592879
commit 1a4ae87842
3 changed files with 13 additions and 13 deletions

View File

@ -34,7 +34,7 @@
/* Macro for creation of arrays of objects (or single objects) */
#define TSOB_FELD(typ,anz) (typ *) malloc((anz)*sizeof(typ));
#define TSOB_FELD(typ,anz) (typ *) calloc(anz, sizeof(typ));
#define Cdrfifo_buffer_chunK 2048