From eee4365d7b3f12699d8835f1641480d928f5a060 Mon Sep 17 00:00:00 2001 From: Kapliuk Date: Thu, 14 Mar 2024 21:57:05 +0000 Subject: [PATCH] =?UTF-8?q?=D0=9E=D0=BD=D0=BE=D0=B2=D0=B8=D1=82=D0=B8=20'c?= =?UTF-8?q?v4/list=5Fops.c'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cv4/list_ops.c | 1 - 1 file changed, 1 deletion(-) diff --git a/cv4/list_ops.c b/cv4/list_ops.c index 148e985..8987685 100644 --- a/cv4/list_ops.c +++ b/cv4/list_ops.c @@ -25,7 +25,6 @@ list_t *append_list(list_t *list1, list_t *list2) { return NULL; } memcpy(list3->elements + list1->length, list2->elements, list2->length * sizeof(list_element_t)); - list3->length = list1->length + list2->length; return list3; }