summaryrefslogtreecommitdiff
path: root/web/web_control.c
diff options
context:
space:
mode:
Diffstat (limited to 'web/web_control.c')
-rw-r--r--web/web_control.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/web_control.c b/web/web_control.c
index 0c2d4bd..0c220a5 100644
--- a/web/web_control.c
+++ b/web/web_control.c
@@ -203,7 +203,7 @@ void user_undo()
struct leg *l = state->active_leg;
struct visit *v = l->visits + --l->n_visits;
l->rem += v->points;
- memcpy(v, 0, sizeof(*v));
+ memset(v, 0, sizeof(*v));
if (state->mode == M_PVC && state->legs[1]->n_visits > l->n_visits) {
struct leg *bl = state->legs[1];