Fix access of an already freed memory.
authorJan Kratochvil <jan.kratochvil@redhat.com>
Mon, 24 Nov 2008 17:05:43 +0000 (17:05 +0000)
committerJan Kratochvil <jan.kratochvil@redhat.com>
Mon, 24 Nov 2008 17:05:43 +0000 (17:05 +0000)
* parse.c (parse_field_expression): Call xstrdup on `*name'.
* completer.c (expression_completer): Free fieldname.

gdb/ChangeLog
gdb/completer.c
gdb/parse.c

index c8d4039de08b81e1914bfd3799b378ee20153cba..faf0053146b887028155df404779f9f584c91857 100644 (file)
@@ -1,3 +1,9 @@
+2008-11-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
+
+       Fix access of an already freed memory.
+       * parse.c (parse_field_expression): Call xstrdup on `*name'.
+       * completer.c (expression_completer): Free fieldname.
+
 2008-11-24  Daniel Jacobowitz  <dan@codesourcery.com>
 
        PR gdb/2474
index e7ee817aa89e218265b0dff40c4a031614d52344..d109140ee3e0bc6e620ca43667d98697f9339106 100644 (file)
@@ -414,9 +414,11 @@ expression_completer (char *text, char *word)
 
          add_struct_fields (type, &out, result, fieldname, flen);
          result[out] = NULL;
+         xfree (fieldname);
          return result;
        }
     }
+  xfree (fieldname);
 
   /* Commands which complete on locations want to see the entire
      argument.  */
index 6200e8162fa904953328d9405ef6ac64d942bd18..3575306d3b77b067ef6316e38819fefb8a856ba9 100644 (file)
@@ -1090,7 +1090,8 @@ parse_expression (char *string)
 /* Parse STRING as an expression.  If parsing ends in the middle of a
    field reference, return the type of the left-hand-side of the
    reference; furthermore, if the parsing ends in the field name,
-   return the field name in *NAME.  In all other cases, return NULL.  */
+   return the field name in *NAME.  In all other cases, return NULL.
+   Returned non-NULL *NAME must be freed by the caller.  */
 
 struct type *
 parse_field_expression (char *string, char **name)
@@ -1120,6 +1121,9 @@ parse_field_expression (char *string, char **name)
       xfree (exp);
       return NULL;
     }
+  /* (*NAME) is a part of the EXP memory block freed below.  */
+  *name = xstrdup (*name);
+
   val = evaluate_subexpression_type (exp, subexp);
   xfree (exp);