2010-04-08 Phil Muldoon <pmuldoon@redhat.com>
authorPhil Muldoon <pmuldoon@redhat.com>
Thu, 8 Apr 2010 10:28:42 +0000 (10:28 +0000)
committerPhil Muldoon <pmuldoon@redhat.com>
Thu, 8 Apr 2010 10:28:42 +0000 (10:28 +0000)
PR python/11417

* python/py-lazy-string.c (stpy_convert_to_value): Check for
          a NULL address.
  (gdbpy_create_lazy_string_object): Allow strings with a NULL
          address and a zero length.

2010-04-08  Phil Muldoon  <pmuldoon@redhat.com>

* gdb.python/py-value: Add null string variable.
  (test_lazy_string): Test zero length, NULL address lazy
  strings.

gdb/ChangeLog
gdb/python/py-lazy-string.c
gdb/testsuite/ChangeLog
gdb/testsuite/gdb.python/py-value.c
gdb/testsuite/gdb.python/py-value.exp

index 33f15569728d06c44d7545ece798052734aeefc5..05cfec64ab59d9c6345437a22de44ad5f0dbaacd 100644 (file)
@@ -1,3 +1,12 @@
+2010-04-08  Phil Muldoon  <pmuldoon@redhat.com>
+
+       PR python/11417
+
+       * python/py-lazy-string.c (stpy_convert_to_value): Check for
+          a NULL address.
+         (gdbpy_create_lazy_string_object): Allow strings with a NULL
+          address and a zero length.
+
 2010-04-08  Hui Zhu  <teawater@gmail.com>
 
        * i386-tdep.c (i386_process_record): Add support for insn
index 8309527527da83767e0f4e00980de3863b17129d..a2faa0eb917a7e221da6860ed75c0e454c2d1711 100644 (file)
@@ -94,6 +94,13 @@ stpy_convert_to_value  (PyObject *self, PyObject *args)
   lazy_string_object *self_string = (lazy_string_object *) self;
   struct value *val;
 
+  if (self_string->address == 0)
+    {
+      PyErr_SetString (PyExc_MemoryError,
+                      "Cannot create a value from NULL");
+      return NULL;
+    }
+
   val = value_at_lazy (self_string->type, self_string->address);
   return value_to_value_object (val);
 }
@@ -111,10 +118,11 @@ gdbpy_create_lazy_string_object (CORE_ADDR address, long length,
 {
   lazy_string_object *str_obj = NULL;
 
-  if (address == 0)
+  if (address == 0 && length != 0)
     {
       PyErr_SetString (PyExc_MemoryError,
-                      "Cannot create a lazy string from a GDB-side string.");
+                      _("Cannot create a lazy string with address 0x0, " \
+                        "and a non-zero length."));
       return NULL;
     }
 
index b4a9dd92ff4c4ad8bbdb722db4cf64e23c7f5376..2be54d7623e02a9e8dfdfbe9cabcfaf9b3b5ea96 100644 (file)
@@ -1,3 +1,9 @@
+2010-04-08  Phil Muldoon  <pmuldoon@redhat.com>
+
+       * gdb.python/py-value: Add null string variable.
+         (test_lazy_string): Test zero length, NULL address lazy
+         strings.
+
 2010-04-07  H.J. Lu  <hongjiu.lu@intel.com>
 
        * gdb.arch/i386-avx.c: New.
index 80bc1e974fcfcfbb912bc9959625033291809c85..be933b314894ef364e66ea6dadc4c3d88b120f7b 100644 (file)
@@ -59,7 +59,7 @@ main (int argc, char *argv[])
   int *p = a;
   int i = 2;
   int *ptr_i = &i;
-
+  const char *sn = 0;
   s.a = 3;
   s.b = 5;
   u.a = 7;
index 2b18e02c41d1ad108b4396ebdaeb48fbff298518..3bfa17317cc8299020bb7dc96f497507cfd71a1b 100644 (file)
@@ -267,6 +267,12 @@ proc test_lazy_strings {} {
   gdb_py_test_silent_cmd "python lstr = sptr.lazy_string()" "Aquire lazy string" 1
   gdb_test "python print lstr.type" "const char \*." "Test type name equality"
   gdb_test "python print sptr.type" "const char \*." "Test type name equality"
+  gdb_test "print sn" "0x0"
+  gdb_py_test_silent_cmd "python snptr = gdb.history (0)" "Get value from history" 1
+  gdb_test "python snstr = snptr.lazy_string(length=5)" ".*Cannot create a lazy string with address.*" "Test lazy string"
+  gdb_py_test_silent_cmd "python snstr = snptr.lazy_string(length=0)" "Succesfully create a lazy string" 1
+  gdb_test "python print snstr.length" "0" "Test lazy string length"
+  gdb_test "python print snstr.address" "0" "Test lazy string address"
 }