Fix: event: erroneous bound check on perf counter name size
[lttng-tools.git] / src / common / event.cpp
index 7946d320975a08cdf54bc9bbd0d9a370f4e37687..601c6ac1fa5f1d2de8c13790102b97c994ab820c 100644 (file)
@@ -1041,7 +1041,8 @@ static ssize_t lttng_event_context_perf_counter_populate_from_payload(
                        goto end;
                }
 
-               ret = lttng_strncpy(event_ctx->u.perf_counter.name, name, name_len);
+               ret = lttng_strncpy(event_ctx->u.perf_counter.name, name,
+                               sizeof(event_ctx->u.perf_counter.name));
                if (ret) {
                        consumed = -1;
                        goto end;
This page took 0.022821 seconds and 4 git commands to generate.