mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 18:18:06 +02:00
intel/perf: allocate cleared counter infos
This array of structure needs to be initialized to 0 as it contains a
bitset we don't explicitly clear.
Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Fixes: 3144bc1d33 ("intel/perf: move query_mask and location out of gen_perf_query_counter")
Reviewed-by: Ivan Briano <ivan.briano@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/18893>
This commit is contained in:
parent
bdacd6df5a
commit
e754bf6be4
1 changed files with 1 additions and 1 deletions
|
|
@ -638,7 +638,7 @@ build_unique_counter_list(struct intel_perf_config *perf)
|
|||
* below contains pointers to this array.
|
||||
*/
|
||||
struct intel_perf_query_counter_info *counter_infos =
|
||||
ralloc_array_size(perf, sizeof(counter_infos[0]), max_counters);
|
||||
rzalloc_array_size(perf, sizeof(counter_infos[0]), max_counters);
|
||||
|
||||
perf->n_counters = 0;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue