diff options
Diffstat (limited to 'gdb/win32-nat.c')
-rw-r--r-- | gdb/win32-nat.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gdb/win32-nat.c b/gdb/win32-nat.c index 10847b8..ab5f3f3 100644 --- a/gdb/win32-nat.c +++ b/gdb/win32-nat.c @@ -1707,8 +1707,10 @@ out: } void -child_solib_add (char *filename ATTRIBUTE_UNUSED, int from_tty, struct target_ops *target) +child_solib_add (char *filename ATTRIBUTE_UNUSED, int from_tty, struct target_ops *target, int readsyms) { + if (!readsyms) + return; if (core_bfd) { child_clear_solibs (); |