Security Advisory

CVE-2022-48768

CVE vulnerability detail — eXtreme Datacenter Security Operations

Published 2024-06-20 11:13:43
Last updated 2025-05-04 12:43:40
Assigner Linux
State PUBLISHED

Description

In the Linux kernel, the following vulnerability has been resolved: tracing/histogram: Fix a potential memory leak for kstrdup() kfree() is missing on an error path to free the memory allocated by kstrdup(): p = param = kstrdup(data->params[i], GFP_KERNEL); So it is better to free it via kfree(p).