summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/main/ScheduleInterface.c13
1 files changed, 8 insertions, 5 deletions
diff --git a/src/main/ScheduleInterface.c b/src/main/ScheduleInterface.c
index 431e2eaa..4203ec63 100644
--- a/src/main/ScheduleInterface.c
+++ b/src/main/ScheduleInterface.c
@@ -790,11 +790,14 @@ int CCTKi_ScheduleGHInit(void *GH)
"No timing information will be available.");
}
- CCTK_GroupStorageIncrease(GH,
- n_scheduled_storage_groups,
- scheduled_storage_groups,
- scheduled_storage_groups_timelevels,
- NULL);
+ if (n_scheduled_storage_groups>0)
+ {
+ CCTK_GroupStorageIncrease(GH,
+ n_scheduled_storage_groups,
+ scheduled_storage_groups,
+ scheduled_storage_groups_timelevels,
+ NULL);
+ }
for(i = 0; i < n_scheduled_comm_groups; i++)
{