From: Karl Heuer Date: Wed, 12 Apr 1995 02:12:02 +0000 (+0000) Subject: (sbrk): Shrink heap by arbitrary amounts. X-Git-Tag: emacs-19.34~4473 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=488e9a54a55f82fb7bbf709460f148659b4fa64c;p=emacs.git (sbrk): Shrink heap by arbitrary amounts. --- diff --git a/src/w32heap.c b/src/w32heap.c index 362a8d44628..89afe6f5bf5 100644 --- a/src/w32heap.c +++ b/src/w32heap.c @@ -128,8 +128,6 @@ sbrk (unsigned long increment) size = -size; /* Sanity checks. */ - if (size % get_page_size () != 0) - return NULL; if ((data_region_end - size) < data_region_base) return NULL;