* libc/reent/reeent.c (_reclaim_reent): Free _REENT_MP_RESULT.
This commit is contained in:
parent
d146860762
commit
d95c57921f
|
@ -1,3 +1,7 @@
|
|||
2006-10-11 Corinna Vinschen <corinna@vinschen.de>
|
||||
|
||||
* libc/reent/reeent.c (_reclaim_reent): Free _REENT_MP_RESULT.
|
||||
|
||||
2006-09-26 Jeff Johnston <jjohnstn@redhat.com>
|
||||
|
||||
* libc/include/stdio.h[_REENT_SMALL]: Do not allow macros
|
||||
|
|
|
@ -69,6 +69,8 @@ _DEFUN (_reclaim_reent, (ptr),
|
|||
|
||||
_free_r (ptr, _REENT_MP_FREELIST(ptr));
|
||||
}
|
||||
if (_REENT_MP_RESULT(ptr))
|
||||
_free_r (ptr, _REENT_MP_RESULT(ptr));
|
||||
|
||||
#ifdef _REENT_SMALL
|
||||
if (ptr->_emergency)
|
||||
|
|
Loading…
Reference in New Issue