2003-02-19 Jeff Johnston <jjohnstn@redhat.com>

* libc/stdlib/mallocr.c (unlink): Revert 02/18 fix.
This commit is contained in:
Jeff Johnston 2003-02-19 19:00:11 +00:00
parent de16df1923
commit 12ee7037a3
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2003-02-19 Jeff Johnston <jjohnstn@redhat.com>
* libc/stdlib/mallocr.c (unlink): Revert 02/18 fix.
2003-02-18 Christian Groessler <chris@groessler.org>
* libc/machine/z8k/setjmp.S (_setjmp / _longjmp): Fix to

View File

@ -1936,8 +1936,8 @@ static void do_check_malloced_chunk(p, s) mchunkptr p; INTERNAL_SIZE_T s;
{ \
BK = P->bk; \
FD = P->fd; \
if (FD) FD->bk = BK; \
if (BK) BK->fd = FD; \
FD->bk = BK; \
BK->fd = FD; \
} \
/* Place p as the last remainder */