Commit f9ba428f by Zack Weinberg Committed by Zack Weinberg

cpplib.c (do_define): Only free the old definition if it actually had one.

	* cpplib.c (do_define): Only free the old definition if it
	actually had one.

From-SVN: r31964
parent 67b8719a
2000-02-13 Zack Weinberg <zack@wolery.cumb.org>
* cpplib.c (do_define): Only free the old definition if it
actually had one.
2000-02-13 Neil Booth <NeilB@earthling.net>
* cppfiles.c (read_and_prescan): When emitting deferred
......
......@@ -715,8 +715,9 @@ do_define (pfile, keyword)
if (hp->type != T_POISON)
{
/* Replace the old definition. */
if (hp->type == T_MACRO)
free_definition (hp->value.defn);
hp->type = T_MACRO;
free_definition (hp->value.defn);
hp->value.defn = mdef.defn;
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment