2011-02-22 Michael Snyder <msnyder@vmware.com>
authorMichael Snyder <msnyder@vmware.com>
Tue, 22 Feb 2011 18:45:05 +0000 (18:45 +0000)
committerMichael Snyder <msnyder@vmware.com>
Tue, 22 Feb 2011 18:45:05 +0000 (18:45 +0000)
* cli/cli-utils.c (number_is_in_list): Check for zero return.

gdb/ChangeLog
gdb/cli/cli-utils.c

index 1859bf0..2451004 100644 (file)
@@ -1,3 +1,7 @@
+2011-02-22  Michael Snyder  <msnyder@vmware.com>
+
+       * cli/cli-utils.c (number_is_in_list): Check for zero return.
+
 2011-02-22  Pedro Alves  <pedro@codesourcery.com>
 
        * frame-unwind.h: Fix comment to mention the this frame, not the
index 8a7e5d4..34c368b 100644 (file)
@@ -175,10 +175,15 @@ number_is_in_list (char *list, int number)
   if (list == NULL || *list == '\0')
     return 1;
 
-  while (list != NULL && *list != '\0')
-    if (get_number_or_range (&list) == number)
-      return 1;
+  while (*list != '\0')
+    {
+      int gotnum = get_number_or_range (&list);
 
+      if (gotnum == 0)
+       error (_("Args must be numbers or '$' variables."));
+      if (gotnum == number)
+       return 1;
+    }
   return 0;
 }