* cp-demangle.c (d_copy_templates): Cast result of malloc to (struct d_print_template...
authoruros <uros@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 12 Nov 2013 20:02:21 +0000 (20:02 +0000)
committerTom Tromey <tromey@redhat.com>
Fri, 15 Nov 2013 17:17:57 +0000 (10:17 -0700)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@204713 138bc75d-0d04-0410-961f-82ee72b054a4

libiberty/ChangeLog
libiberty/cp-demangle.c

index cda181e1066d36d82bf778a1b820b77cd37c0323..5c0efcc20d08c15161911fadaea62501ab0b7cc0 100644 (file)
@@ -1,3 +1,9 @@
+2013-11-12  Uros Bizjak  <ubizjak@gmail.com>
+
+       * cp-demangle.c (d_copy_templates): Cast result of malloc
+       to (struct d_print_template *).
+       (d_print_comp): Cast result of realloc to (struct d_saved scope *).
+
 2013-10-29  Marc Glisse  <marc.glisse@inria.fr>
 
        PR tree-optimization/58689
@@ -6,7 +12,7 @@
 2013-10-27  Gerald Pfeifer  <gerald@pfeifer.com>
 
        * testsuite/test-demangle.c: Include unistd.h.
-       
+
 2013-10-25  Gary Benson  <gbenson@redhat.com>
 
        * cp-demangle.c (struct d_saved_scope): New structure.
        (d_copy_templates): New function.
        (d_print_comp): New variables saved_templates and
        need_template_restore.
-       [DEMANGLE_COMPONENT_REFERENCE,
-       DEMANGLE_COMPONENT_RVALUE_REFERENCE]: Capture scope the first
-       time the component is traversed, and use the captured scope for
-       subsequent traversals.
+       [DEMANGLE_COMPONENT_REFERENCE, DEMANGLE_COMPONENT_RVALUE_REFERENCE]:
+       Capture scope the first time the component is traversed, and use the
+       captured scope for subsequent traversals.
        * testsuite/demangle-expected: Add regression test.
 
 2013-10-23  Gerald Pfeifer  <gerald@pfeifer.com>
index 7be98048565930b12dd4e903c985e71077f6261d..cbe4d8c9f63256836e5038a48c2b644f763a1c08 100644 (file)
@@ -3968,7 +3968,7 @@ d_copy_templates (struct d_print_info *dpi)
   for (src = dpi->templates; src != NULL; src = src->next)
     {
       struct d_print_template *dst =
-       malloc (sizeof (struct d_print_template));
+       (struct d_print_template *) malloc (sizeof (struct d_print_template));
 
       if (dst == NULL)
        {
@@ -4381,14 +4381,16 @@ d_print_comp (struct d_print_info *dpi, int options,
 
            if (scope == NULL)
              {
+               size_t size;
+
                /* This is the first time SUB has been traversed.
                   We need to capture the current templates so
                   they can be restored if SUB is reentered as a
                   substitution.  */
                ++dpi->num_saved_scopes;
-               scopes = realloc (dpi->saved_scopes,
-                                 sizeof (struct d_saved_scope)
-                                 * dpi->num_saved_scopes);
+               size = sizeof (struct d_saved_scope) * dpi->num_saved_scopes;
+               scopes = (struct d_saved_scope *) realloc (dpi->saved_scopes,
+                                                          size);
                if (scopes == NULL)
                  {
                    d_print_error (dpi);
This page took 0.031675 seconds and 4 git commands to generate.