Fix version change

This commit is contained in:
Andrew Case
2024-10-31 10:34:13 -05:00
parent 640b86cbc3
commit 603aacb679
@@ -67,7 +67,11 @@ class PerfEvents(plugins.PluginInterface):
# if the names are smeared then bail
try:
event_name = utility.pointer_to_string(event.pmu.name, count=64)
full_name = utility.array_to_string(event.prog.aux.ksym.name, count=512)
try:
full_name = utility.array_to_string(event.prog.aux.ksym.name, count=512)
except AttributeError:
full_name = renderers.NotApplicableValue()
program_name = utility.array_to_string(event.prog.aux.name)
except exceptions.InvalidAddressException:
continue