Fix completion_add_word()

This commit is contained in:
Přemysl Eric Janouch 2015-05-10 00:22:19 +02:00
parent e859693bf2
commit 2ef7323f26
1 changed files with 2 additions and 1 deletions

View File

@ -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 };
}