diff options
-rw-r--r-- | degesch.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -5193,7 +5193,8 @@ completion_add_word (struct completion *self, size_t start, size_t end) if (!self->words) self->words = xcalloc ((self->words_alloc = 4), sizeof *self->words); if (self->words_len == self->words_alloc) - self->words = xrealloc (self->words, (self->words_alloc <<= 1)); + self->words = xreallocarray (self->words, + (self->words_alloc <<= 1), sizeof *self->words); self->words[self->words_len++] = (struct completion_word) { start, end }; } |