aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPřemysl Janouch <p.janouch@gmail.com>2015-05-10 00:22:19 +0200
committerPřemysl Janouch <p.janouch@gmail.com>2015-05-10 00:22:49 +0200
commit2ef7323f265ec4b3ee186309a945b601c1e35fd7 (patch)
tree27d6eef116afc03ae8114c7539041137b320170d
parente859693bf252270fc6cca4cf6df952f9f5be8d47 (diff)
downloadxK-2ef7323f265ec4b3ee186309a945b601c1e35fd7.tar.gz
xK-2ef7323f265ec4b3ee186309a945b601c1e35fd7.tar.xz
xK-2ef7323f265ec4b3ee186309a945b601c1e35fd7.zip
Fix completion_add_word()
-rw-r--r--degesch.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/degesch.c b/degesch.c
index ba7d029..cfa44a6 100644
--- a/degesch.c
+++ b/degesch.c
@@ -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 };
}