]> sourceware.org Git - newlib-cygwin.git/commitdiff
2003-02-19 Jeff Johnston <jjohnstn@redhat.com>
authorJeff Johnston <jjohnstn@redhat.com>
Wed, 19 Feb 2003 19:00:11 +0000 (19:00 +0000)
committerJeff Johnston <jjohnstn@redhat.com>
Wed, 19 Feb 2003 19:00:11 +0000 (19:00 +0000)
        * libc/stdlib/mallocr.c (unlink): Revert 02/18 fix.

newlib/ChangeLog
newlib/libc/stdlib/mallocr.c

index e9018f7ba37b8380fd6ca518fa61616f89162ee6..d20861654eeee1fee60c60c3a1bd744251eac118 100644 (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
index fa2278224c6d7ac43dcd64c6eb250c5158da2b11..5e104579ef7c5e370897923be8cc7670f9de00a0 100644 (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 */
This page took 0.049646 seconds and 5 git commands to generate.