mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-28 23:16:14 +01:00
Merge branch 'wip/phako/fix-frame-filter' into 'main'
gobject_gdb.py: Do not break bt on optimized build See merge request GNOME/glib!3753
This commit is contained in:
commit
9eee19b7ed
@ -148,11 +148,16 @@ def get_signal_name(id):
|
|||||||
id = long(id)
|
id = long(id)
|
||||||
if id == 0:
|
if id == 0:
|
||||||
return None
|
return None
|
||||||
|
|
||||||
|
try:
|
||||||
val = read_global_var("g_signal_nodes")
|
val = read_global_var("g_signal_nodes")
|
||||||
max_s = read_global_var("g_n_signal_nodes")
|
max_s = read_global_var("g_n_signal_nodes")
|
||||||
max_s = long(max_s)
|
max_s = long(max_s)
|
||||||
if id < max_s:
|
if id < max_s:
|
||||||
return val[id]["name"].string()
|
return val[id]["name"].string()
|
||||||
|
except gdb.error:
|
||||||
|
return None
|
||||||
|
|
||||||
return None
|
return None
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user