* collect2.c (xrealloc): fix typo in last change.
authorGraham Stott <grahams@rcp.co.uk>
Mon, 8 Feb 1999 11:31:34 +0000 (03:31 -0800)
committerRichard Henderson <rth@gcc.gnu.org>
Mon, 8 Feb 1999 11:31:34 +0000 (03:31 -0800)
From-SVN: r25079

gcc/ChangeLog
gcc/collect2.c

index ad5fc1ae56fc672f8f2781a1a80b415dc126abdf..2aedf3557e8902f1a61c7534d5d25583d9fbad91 100644 (file)
@@ -1,3 +1,7 @@
+Mon Feb  8 11:34:44 1999  Graham <grahams@rcp.co.uk>
+
+       * collect2.c (xrealloc): fix typo in last change.
+
 Mon Feb 8 09:13:38 PST 1999 Jeff Law  (law@cygnus.com)
 
        * version.c: Bump for snapshot.
index 9a538af9a7a3c822e5a4c56a8fb72e658ee2582e..f144480411d617ad7e00d20c0777b5dcfd4440f6 100644 (file)
@@ -553,7 +553,7 @@ xrealloc (old, size)
   size_t size;
 {
   register PTR ptr;
-  if (ptr)
+  if (old)
     ptr = (PTR) realloc (old, size);
   else
     ptr = (PTR) malloc (size);