diff options
Diffstat (limited to 'gdb/symtab.c')
-rw-r--r-- | gdb/symtab.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gdb/symtab.c b/gdb/symtab.c index 346c162..e62293f 100644 --- a/gdb/symtab.c +++ b/gdb/symtab.c @@ -212,6 +212,7 @@ iterate_over_some_symtabs (const char *name, { if (callback (s, data)) return 1; + continue; } /* Before we invoke realpath, which can get expensive when many @@ -224,6 +225,7 @@ iterate_over_some_symtabs (const char *name, { if (callback (s, data)) return 1; + continue; } /* If the user gave us an absolute path, try to find the file in @@ -239,6 +241,7 @@ iterate_over_some_symtabs (const char *name, { if (callback (s, data)) return 1; + continue; } } } |