diff options
Diffstat (limited to 'src/keymap.c')
| -rw-r--r-- | src/keymap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/keymap.c b/src/keymap.c index 34406a5fc70..110c8f43729 100644 --- a/src/keymap.c +++ b/src/keymap.c | |||
| @@ -2063,7 +2063,7 @@ For an approximate inverse of this, see `kbd'. */) | |||
| 2063 | size += XINT (Flength (prefix)); | 2063 | size += XINT (Flength (prefix)); |
| 2064 | 2064 | ||
| 2065 | /* This has one extra element at the end that we don't pass to Fconcat. */ | 2065 | /* This has one extra element at the end that we don't pass to Fconcat. */ |
| 2066 | if (min (PTRDIFF_MAX, SIZE_MAX) / word_size / 4 < size) | 2066 | if (size > min (PTRDIFF_MAX, SIZE_MAX) / word_size / 4) |
| 2067 | memory_full (SIZE_MAX); | 2067 | memory_full (SIZE_MAX); |
| 2068 | SAFE_ALLOCA_LISP (args, size * 4); | 2068 | SAFE_ALLOCA_LISP (args, size * 4); |
| 2069 | 2069 | ||