Fix: ser/des: missing null terminator on payload append
[lttng-tools.git] / src / common / event.c
index b90bc2a2f33cf6bc1610895c47ae1eb879ecd0cb..af4a4b1a35dad94365509c7bc9b598f0ea1755dd 100644 (file)
@@ -1197,7 +1197,8 @@ static int lttng_event_context_app_serialize(
        }
 
        /* Include the null terminator. */
-       comm.provider_name_len = provider_len + 1;
+       provider_len += 1;
+       comm.provider_name_len = provider_len;
 
        ctx_len = strlen(ctx_name);
        if (ctx_len == 0) {
@@ -1206,7 +1207,8 @@ static int lttng_event_context_app_serialize(
        }
 
        /* Include the null terminator. */
-       comm.ctx_name_len = ctx_len + 1;
+       ctx_len += 1;
+       comm.ctx_name_len = ctx_len;
 
        /* Header */
        ret = lttng_dynamic_buffer_append(buffer, &comm, sizeof(comm));
This page took 0.022733 seconds and 4 git commands to generate.