aboutsummaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'main.c')
-rw-r--r--main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.c b/main.c
index 9291119..056e0a3 100644
--- a/main.c
+++ b/main.c
@@ -931,7 +931,7 @@ void insert(struct menu_state *state, const char *s, ssize_t n) {
}
memmove(state->text + state->cursor + n, state->text + state->cursor,
sizeof state->text - state->cursor - MAX(n, 0));
- if (n > 0) {
+ if (n > 0 && s != NULL) {
memcpy(state->text + state->cursor, s, n);
}
state->cursor += n;