]> git.seodisparate.com - c_simple_http/commitdiff
Cleanup: removed unused pointer in internal struct
authorStephen Seo <seo.disparate@gmail.com>
Tue, 10 Sep 2024 12:44:10 +0000 (21:44 +0900)
committerStephen Seo <seo.disparate@gmail.com>
Tue, 10 Sep 2024 12:44:10 +0000 (21:44 +0900)
src/http_template.c

index 99e86a1377c57f5a20365852139ae1920454bcc4..1192bcbc73e2962e10e899a0282682c80d35fdad 100644 (file)
@@ -31,7 +31,6 @@ typedef struct C_SIMPLE_HTTP_INTERNAL_Template_Node {
     size_t orig_end_idx;
     size_t html_capacity;
   };
-  SDArchiverLinkedList *forced_next;
 } C_SIMPLE_HTTP_INTERNAL_Template_Node;
 
 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) {
       free(node->html);
     }
-    if (node->forced_next) {
-      simple_archiver_list_free(&node->forced_next);
-    }
     free(node);
   }
 }
@@ -191,7 +187,6 @@ char *c_simple_http_path_to_generated(
             html_buf + last_template_idx,
             template_node->html_size);
           template_node->orig_end_idx = idx + 1;
-          template_node->forced_next = NULL;
           simple_archiver_list_add(template_html_list, template_node,
             c_simple_http_internal_free_template_node);
           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 = malloc(template_node->html_size);
               template_node->orig_end_idx = idx + 1;
-              template_node->forced_next = NULL;
 
               if (fread(template_node->html,
                         template_node->html_size,
@@ -272,7 +266,6 @@ char *c_simple_http_path_to_generated(
               memcpy(template_node->html, value_c_str, size);
               template_node->html_size = size;
               template_node->orig_end_idx = idx + 1;
-              template_node->forced_next = NULL;
             }
           } else {
             template_node =
@@ -280,7 +273,6 @@ char *c_simple_http_path_to_generated(
             template_node->html = NULL;
             template_node->html_size = 0;
             template_node->orig_end_idx = idx + 1;
-            template_node->forced_next = NULL;
           }
           simple_archiver_list_add(template_html_list, 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);
       template_node->html_size = size;
       template_node->orig_end_idx = idx + 1;
-      template_node->forced_next = NULL;
       simple_archiver_list_add(template_html_list, template_node,
         c_simple_http_internal_free_template_node);
       template_node = NULL;