* cli/cli-cmds.c (filter_sals): Filter out sals with NULL symtab.
authorTom Tromey <tromey@redhat.com>
Fri, 16 Dec 2011 21:17:42 +0000 (21:17 +0000)
committerTom Tromey <tromey@redhat.com>
Fri, 16 Dec 2011 21:17:42 +0000 (21:17 +0000)
gdb/ChangeLog
gdb/cli/cli-cmds.c

index 2898cde..ff9143b 100644 (file)
@@ -1,3 +1,7 @@
+2011-12-16  Tom Tromey  <tromey@redhat.com>
+
+       * cli/cli-cmds.c (filter_sals): Filter out sals with NULL symtab.
+
 2011-12-16  Pedro Alves  <pedro@codesourcery.com>
 
        * inf-loop.c: Include top.h.
index 8832e0c..af06443 100644 (file)
@@ -1516,7 +1516,7 @@ filter_sals (struct symtabs_and_lines *sals)
   for (i = 0; i < sals->nelts; ++i)
     {
       if (sals->sals[i].pspace == current_program_space
-         || sals->sals[i].symtab == NULL)
+         && sals->sals[i].symtab != NULL)
        {
          sals->sals[out] = sals->sals[i];
          ++out;