From 2a1e3d528265c3d366dab9ad4b0c4d3d65e1c4ed Mon Sep 17 00:00:00 2001
From: Samo Penic <samo.penic@gmail.com>
Date: Mon, 13 Apr 2020 12:13:50 +0000
Subject: [PATCH] Storing previously debugged version

---
 src/cell.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/cell.c b/src/cell.c
index 2015be7..3df15ea 100644
--- a/src/cell.c
+++ b/src/cell.c
@@ -6,7 +6,7 @@
 ts_cell_list  *init_cell_list(ts_uint ncmax1, ts_uint ncmax2, ts_uint ncmax3, ts_double stepsize){
     ts_uint i;
     ts_uint nocells=ncmax1*ncmax2*ncmax3;
-    ts_cell_list *clist=(ts_cell_list *)malloc(sizeof(ts_cell_list));
+    ts_cell_list *clist=(ts_cell_list *)calloc(1,sizeof(ts_cell_list));
     if(clist==NULL) fatal("Error while allocating memory for cell list!",100);
 
     clist->ncmax[0]=ncmax1;
@@ -15,8 +15,8 @@
     clist->cellno=nocells;
     clist->dcell=1.0/(1.0 + stepsize);
     clist->shift=(ts_double) clist->ncmax[0]/2;
-
-    clist->cell=(ts_cell **)malloc(nocells*sizeof(ts_cell *));
+    clist->max_occupancy=16; /* hard coded max occupancy? */
+    clist->cell=(ts_cell **)calloc(nocells,sizeof(ts_cell *));
     if(clist->cell==NULL) fatal("Error while allocating memory for cell list! ncmax too large?",101);
 
     for(i=0;i<nocells;i++){

--
Gitblit v1.9.3