aboutsummaryrefslogtreecommitdiff
path: root/gcc/fortran
diff options
context:
space:
mode:
authorMikael Morin <mikael@gcc.gnu.org>2010-10-06 14:43:55 +0000
committerMikael Morin <mikael@gcc.gnu.org>2010-10-06 14:43:55 +0000
commit3d2e4fe6756027ec9826cd8bb94173f691c9a7f8 (patch)
treee8fcc270d8bc8d18c1125672e905fe7680779432 /gcc/fortran
parentccd2b322781729ee41f7f44eae1b519c6d0ec4c7 (diff)
downloadgcc-3d2e4fe6756027ec9826cd8bb94173f691c9a7f8.zip
gcc-3d2e4fe6756027ec9826cd8bb94173f691c9a7f8.tar.gz
gcc-3d2e4fe6756027ec9826cd8bb94173f691c9a7f8.tar.bz2
primary.c (gfc_free_structure_ctor_component): Also free the component structure itself.
2010-10-06 Mikael Morin <mikael@gcc.gnu.org> * primary.c (gfc_free_structure_ctor_component): Also free the component structure itself. From-SVN: r165032
Diffstat (limited to 'gcc/fortran')
-rw-r--r--gcc/fortran/ChangeLog5
-rw-r--r--gcc/fortran/primary.c1
2 files changed, 6 insertions, 0 deletions
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog
index 2e4e178..c75bb8b 100644
--- a/gcc/fortran/ChangeLog
+++ b/gcc/fortran/ChangeLog
@@ -1,5 +1,10 @@
2010-10-06 Mikael Morin <mikael@gcc.gnu.org>
+ * primary.c (gfc_free_structure_ctor_component): Also free the
+ component structure itself.
+
+2010-10-06 Mikael Morin <mikael@gcc.gnu.org>
+
* module.c (gfc_use_module): Free atom_string when done with it.
2010-10-06 Mikael Morin <mikael@gcc.gnu.org>
diff --git a/gcc/fortran/primary.c b/gcc/fortran/primary.c
index f6ceae9..9d0deec 100644
--- a/gcc/fortran/primary.c
+++ b/gcc/fortran/primary.c
@@ -2164,6 +2164,7 @@ gfc_free_structure_ctor_component (gfc_structure_ctor_component *comp)
{
gfc_free (comp->name);
gfc_free_expr (comp->val);
+ gfc_free (comp);
}