diff options
author | Michael I. Bushnell <mib@gnu.org> | 1994-04-06 16:33:51 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1994-04-06 16:33:51 +0000 |
commit | 9bbba12c48b5436cc96d22fe227ef2626112759d (patch) | |
tree | 9cbdf3da4b1862faa40eacde6fba6d7c25685a7d /libthreads | |
parent | 931721762209f574ad14fe22fe16e4da2cf0fa7b (diff) | |
download | hurd-9bbba12c48b5436cc96d22fe227ef2626112759d.tar.gz hurd-9bbba12c48b5436cc96d22fe227ef2626112759d.tar.bz2 hurd-9bbba12c48b5436cc96d22fe227ef2626112759d.zip |
Formerly malloc.c.~3~
Diffstat (limited to 'libthreads')
-rw-r--r-- | libthreads/malloc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libthreads/malloc.c b/libthreads/malloc.c index 851d7c85..3ac15c97 100644 --- a/libthreads/malloc.c +++ b/libthreads/malloc.c @@ -248,7 +248,8 @@ realloc(old_base, new_size) char *new_base; if (old_base == 0) - return 0; + return malloc (new_size); + /* * Find size of old block. */ |