aboutsummaryrefslogtreecommitdiff
path: root/gdb/python
diff options
context:
space:
mode:
authorDoug Evans <dje@google.com>2011-12-20 04:29:35 +0000
committerDoug Evans <dje@google.com>2011-12-20 04:29:35 +0000
commit87c31f06224db060e86fab624a9cc3580c01621d (patch)
tree5c20ad028bb8189695a318a9f903fd6b22c32538 /gdb/python
parent9542d6ad012af723234ee837d6995e628de36286 (diff)
downloadgdb-87c31f06224db060e86fab624a9cc3580c01621d.zip
gdb-87c31f06224db060e86fab624a9cc3580c01621d.tar.gz
gdb-87c31f06224db060e86fab624a9cc3580c01621d.tar.bz2
* python/py-auto-load.c (info_auto_load_scripts): Pass address of
scripts vector to collect_matching_scripts. (collect_matching_scripts): Update.
Diffstat (limited to 'gdb/python')
-rw-r--r--gdb/python/py-auto-load.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/gdb/python/py-auto-load.c b/gdb/python/py-auto-load.c
index 62975ea..ef332ea 100644
--- a/gdb/python/py-auto-load.c
+++ b/gdb/python/py-auto-load.c
@@ -481,10 +481,10 @@ static int
collect_matching_scripts (void **slot, void *info)
{
struct loaded_script *script = *slot;
- VEC (loaded_script_ptr) *scripts = info;
+ VEC (loaded_script_ptr) **scripts_ptr = info;
if (re_exec (script->name))
- VEC_safe_push (loaded_script_ptr, scripts, script);
+ VEC_safe_push (loaded_script_ptr, *scripts_ptr, script);
return 1;
}
@@ -563,8 +563,9 @@ info_auto_load_scripts (char *pattern, int from_tty)
if (pspace_info != NULL && pspace_info->loaded_scripts != NULL)
{
immediate_quit++;
+ /* Pass a pointer to scripts as VEC_safe_push can realloc space. */
htab_traverse_noresize (pspace_info->loaded_scripts,
- collect_matching_scripts, scripts);
+ collect_matching_scripts, &scripts);
immediate_quit--;
}