Cleanup: removed unused pointer in internal struct
All checks were successful
Run Unit Tests / build-and-run-unit-tests (push) Successful in 3s

This commit is contained in:
Stephen Seo 2024-09-10 21:44:10 +09:00
parent 051be910f3
commit b22556ec6f

View file

@ -31,7 +31,6 @@ typedef struct C_SIMPLE_HTTP_INTERNAL_Template_Node {
size_t orig_end_idx; size_t orig_end_idx;
size_t html_capacity; size_t html_capacity;
}; };
SDArchiverLinkedList *forced_next;
} C_SIMPLE_HTTP_INTERNAL_Template_Node; } C_SIMPLE_HTTP_INTERNAL_Template_Node;
void c_simple_http_internal_free_template_node(void *data) { void c_simple_http_internal_free_template_node(void *data) {
@ -40,9 +39,6 @@ void c_simple_http_internal_free_template_node(void *data) {
if (node->html) { if (node->html) {
free(node->html); free(node->html);
} }
if (node->forced_next) {
simple_archiver_list_free(&node->forced_next);
}
free(node); free(node);
} }
} }
@ -191,7 +187,6 @@ char *c_simple_http_path_to_generated(
html_buf + last_template_idx, html_buf + last_template_idx,
template_node->html_size); template_node->html_size);
template_node->orig_end_idx = idx + 1; template_node->orig_end_idx = idx + 1;
template_node->forced_next = NULL;
simple_archiver_list_add(template_html_list, template_node, simple_archiver_list_add(template_html_list, template_node,
c_simple_http_internal_free_template_node); c_simple_http_internal_free_template_node);
template_node = NULL; template_node = NULL;
@ -252,7 +247,6 @@ char *c_simple_http_path_to_generated(
template_node->html_size = (size_t)file_size; template_node->html_size = (size_t)file_size;
template_node->html = malloc(template_node->html_size); template_node->html = malloc(template_node->html_size);
template_node->orig_end_idx = idx + 1; template_node->orig_end_idx = idx + 1;
template_node->forced_next = NULL;
if (fread(template_node->html, if (fread(template_node->html,
template_node->html_size, template_node->html_size,
@ -272,7 +266,6 @@ char *c_simple_http_path_to_generated(
memcpy(template_node->html, value_c_str, size); memcpy(template_node->html, value_c_str, size);
template_node->html_size = size; template_node->html_size = size;
template_node->orig_end_idx = idx + 1; template_node->orig_end_idx = idx + 1;
template_node->forced_next = NULL;
} }
} else { } else {
template_node = template_node =
@ -280,7 +273,6 @@ char *c_simple_http_path_to_generated(
template_node->html = NULL; template_node->html = NULL;
template_node->html_size = 0; template_node->html_size = 0;
template_node->orig_end_idx = idx + 1; template_node->orig_end_idx = idx + 1;
template_node->forced_next = NULL;
} }
simple_archiver_list_add(template_html_list, template_node, simple_archiver_list_add(template_html_list, template_node,
c_simple_http_internal_free_template_node); c_simple_http_internal_free_template_node);
@ -302,7 +294,6 @@ char *c_simple_http_path_to_generated(
memcpy(template_node->html, html_buf + last_node->orig_end_idx, size); memcpy(template_node->html, html_buf + last_node->orig_end_idx, size);
template_node->html_size = size; template_node->html_size = size;
template_node->orig_end_idx = idx + 1; template_node->orig_end_idx = idx + 1;
template_node->forced_next = NULL;
simple_archiver_list_add(template_html_list, template_node, simple_archiver_list_add(template_html_list, template_node,
c_simple_http_internal_free_template_node); c_simple_http_internal_free_template_node);
template_node = NULL; template_node = NULL;