aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/w32heap.c2
1 files changed, 0 insertions, 2 deletions
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)
128 size = -size; 128 size = -size;
129 129
130 /* Sanity checks. */ 130 /* Sanity checks. */
131 if (size % get_page_size () != 0)
132 return NULL;
133 if ((data_region_end - size) < data_region_base) 131 if ((data_region_end - size) < data_region_base)
134 return NULL; 132 return NULL;
135 133