Fix: lttng-add-context: leak of application context parameters
[lttng-tools.git] / src / bin / lttng / commands / add_context.cpp
index 79142cc65f29522e629d7bc2fede64f01c4d0c9f..550015f171cb6331b1c92143789df5dba79ea30d 100644 (file)
@@ -812,9 +812,16 @@ static void destroy_ctx_type(struct ctx_type *type)
        if (!type) {
                return;
        }
+
        if (type->opt) {
                free(type->opt->symbol);
        }
+
+       if (type->opt->ctx_type == CONTEXT_APP_CONTEXT) {
+               free(type->opt->u.app_ctx.ctx_name);
+               free(type->opt->u.app_ctx.provider_name);
+       }
+
        delete type->opt;
        free(type);
 }
This page took 0.023814 seconds and 4 git commands to generate.