2010-12-17 Michael Snyder <msnyder@vmware.com>
* utils.c (do_my_cleanups): Comment fix-up.
This commit is contained in:
parent
e010756507
commit
5f2302abf8
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2010-12-17 Michael Snyder <msnyder@vmware.com>
|
||||||
|
|
||||||
|
* utils.c (do_my_cleanups): Comment fix-up.
|
||||||
|
|
||||||
2010-12-17 Kevin Buettner <kevinb@redhat.com>
|
2010-12-17 Kevin Buettner <kevinb@redhat.com>
|
||||||
|
|
||||||
* mips-tdep.c (make_mips16_addr): New function.
|
* mips-tdep.c (make_mips16_addr): New function.
|
||||||
|
|
|
@ -475,7 +475,7 @@ do_my_cleanups (struct cleanup **pmy_chain,
|
||||||
|
|
||||||
while ((ptr = *pmy_chain) != old_chain)
|
while ((ptr = *pmy_chain) != old_chain)
|
||||||
{
|
{
|
||||||
*pmy_chain = ptr->next; /* Do this first incase recursion */
|
*pmy_chain = ptr->next; /* Do this first in case of recursion. */
|
||||||
(*ptr->function) (ptr->arg);
|
(*ptr->function) (ptr->arg);
|
||||||
if (ptr->free_arg)
|
if (ptr->free_arg)
|
||||||
(*ptr->free_arg) (ptr->arg);
|
(*ptr->free_arg) (ptr->arg);
|
||||||
|
|
Loading…
Reference in a new issue