From 8de3b5579769ed7abd4db286c9ce5847af040f6b Mon Sep 17 00:00:00 2001
From: Florian Prill <florian.prill@dwd.de>
Date: Tue, 11 Jun 2019 11:38:11 +0200
Subject: [PATCH] [develop]  fixed uninitialized pointer.

---
 src/mtime_t_event.inc | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/mtime_t_event.inc b/src/mtime_t_event.inc
index 2b78e463..b36a406a 100644
--- a/src/mtime_t_event.inc
+++ b/src/mtime_t_event.inc
@@ -308,6 +308,7 @@
     ELSE
       allocate(this%last_event_in_group%nextEventInGroup, source=event_to_add)
       this%last_event_in_group => this%last_event_in_group%nextEventInGroup
+      NULLIFY(this%last_event_in_group%nextEventInGroup)
     ENDIF
   END SUBROUTINE t_eventGroup_addToGroup
 
-- 
GitLab