dtcm: Coverity 88675
authorPeter Howkins <flibble@users.sf.net>
Wed, 4 Jul 2018 21:14:31 +0000 (22:14 +0100)
committerPeter Howkins <flibble@users.sf.net>
Wed, 4 Jul 2018 21:14:31 +0000 (22:14 +0100)
cde/programs/dtcm/server/reutil.c

index dfc0fc2f4dcd409beddb3e0775ade354048d71a2..1d7f3520fe8e4eab4828b5e631e2c0643e3461a1 100644 (file)
@@ -285,7 +285,7 @@ DeriveNewStartTime(
        Tick             end_date;
        Tick             an_event;
        int              num_events;
-       RepeatEventState *res;
+       RepeatEventState *res = NULL;
 
        /* Count the number of events from the start time to the current time */
        end_date = old_re->re_end_date;
@@ -309,6 +309,8 @@ DeriveNewStartTime(
               ;
        }
 
+       free(res);
+
        return an_event;
 }