From 7f5efba80e3643683eb050205054b7896342aa2d Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Thu, 2 Jun 2011 01:35:28 -0700 Subject: [PATCH] * alloc.c (allocate_vectorlike): Adjust to memory_full API change. --- src/alloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/alloc.c b/src/alloc.c index 4449dd989de..0c18fca1755 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -2793,7 +2793,7 @@ allocate_vectorlike (EMACS_INT len) int word_size = sizeof p->contents[0]; if ((SIZE_MAX - header_size) / word_size < len) - memory_full (); + memory_full (SIZE_MAX); MALLOC_BLOCK_INPUT; -- 2.39.5