Silence bogus Coverity warning of uninitialized value
[lttng-tools.git] / src / common / notification.c
index 5062ca5b1afa16f26340871a878801723ffce825..785af6816f4453e5ed2b06e5845f3eea1f5e4e6c 100644 (file)
@@ -50,7 +50,7 @@ ssize_t lttng_notification_serialize(struct lttng_notification *notification,
                char *buf)
 {
        ssize_t ret, condition_size, evaluation_size, offset = 0;
-       struct lttng_notification_comm notification_comm;
+       struct lttng_notification_comm notification_comm = { 0 };
 
        if (!notification) {
                ret = -1;
This page took 0.023589 seconds and 5 git commands to generate.