symbol.c (restore_old_symbol): Fix thinko.

fortran/
	* symbol.c (restore_old_symbol): Fix thinko.

From-SVN: r196413
This commit is contained in:
Mikael Morin 2013-03-03 17:24:19 +00:00
parent 718e305d0f
commit 4ef9b95000
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2013-03-03 Mikael Morin <mikael@gcc.gnu.org>
* symbol.c (restore_old_symbol): Fix thinko.
2013-03-03 Mikael Morin <mikael@gcc.gnu.org>
* symbol.c (gfc_undo_symbols): Move code...

View File

@ -2896,7 +2896,8 @@ restore_old_symbol (gfc_symbol *p)
if (p->value != old->value)
{
gfc_free_expr (old->value);
gcc_checking_assert (old->value == NULL);
gfc_free_expr (p->value);
p->value = NULL;
}