]> git.baikalelectronics.ru Git - kernel.git/commit
drm/amd/display/dc/calcs/dce_calcs: Fix a memleak in calculate_bandwidth()
authorZhou Qingyang <zhou1615@umn.edu>
Mon, 24 Jan 2022 16:55:51 +0000 (00:55 +0800)
committerAlex Deucher <alexander.deucher@amd.com>
Tue, 25 Jan 2022 22:52:46 +0000 (17:52 -0500)
commit76727a8d1e654b7ed38db7ce965b6ab960f2c729
tree5126f45aeb686ce23bfa3a425c0db2e0cf448341
parentd8f3c7d90e8e55298e8abcd22855ade0076fbdf3
drm/amd/display/dc/calcs/dce_calcs: Fix a memleak in calculate_bandwidth()

In calculate_bandwidth(), the tag free_sclk and free_yclk are reversed,
which could lead to a memory leak of yclk.

Fix this bug by changing the location of free_sclk and free_yclk.

This bug was found by a static analyzer.

Builds with 'make allyesconfig' show no new warnings,
and our static analyzer no longer warns about this code.

Fixes: 3a35a5bc09a3 ("drm/amd/display/dc/calcs/dce_calcs: Move some large variables from the stack to the heap")
Signed-off-by: Zhou Qingyang <zhou1615@umn.edu>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/display/dc/calcs/dce_calcs.c