maybe fixed
authornishi <nishi@0f02c867-ac3d-714e-8a88-971ba1f6efcf>
Tue, 30 Apr 2024 01:54:21 +0000 (01:54 +0000)
committernishi <nishi@0f02c867-ac3d-714e-8a88-971ba1f6efcf>
Tue, 30 Apr 2024 01:54:21 +0000 (01:54 +0000)
git-svn-id: file:///raid/svn-main/nishi-serenade/trunk@82 0f02c867-ac3d-714e-8a88-971ba1f6efcf

Serenade/parser.c

index 92b7b600694f169aab638829eea7481c2e1e68ca..66fbdebfb06c1acfe632ad4c25a7af8c95f9e202 100644 (file)
@@ -275,38 +275,31 @@ void sn_generic_free(struct sn_interpreter* sn, struct sn_generic* g) {
        free(sn->generics);
        sn->generics = gens;
 
-       for(i = 0; sn->variables[i] != NULL; i++);
-       struct sn_interpreter_kv** kvs = malloc(sizeof(struct sn_interpreter_kv*) * (i + 1));
-       for(i = 0; sn->variables[i] != NULL; i++) kvs[i] = sn->variables[i];
-       kvs[i] = NULL;
-       for(i = 0; sn->variables[i] != NULL; i++){
-               struct sn_interpreter_kv** oldkvs = kvs;
-               int j;
-               int count = 0;
-               int matched = 0;
-               for(j = 0; oldkvs[j] != NULL; j++){
-                       if(oldkvs[j]->value != g){
-                               count++;
-                       }else{
-                               matched++;
-                       }
-               }
-               if(matched == 0) continue;
-               kvs = malloc(sizeof(struct sn_interpreter_kv*) * (count + 1));
-               count = 0;
-               for(j = 0; oldkvs[j] != NULL; j++){
-                       if(oldkvs[j]->value != g){
+       if(sn->variables != NULL){
+               for(i = 0; sn->variables[i] != NULL; i++);
+               struct sn_interpreter_kv** kvs = malloc(sizeof(struct sn_interpreter_kv*) * (i + 1));
+               for(i = 0; sn->variables[i] != NULL; i++) kvs[i] = sn->variables[i];
+               kvs[i] = NULL;
+               for(i = 0; sn->variables[i] != NULL; i++){
+                       struct sn_interpreter_kv** oldkvs = kvs;
+                       int j;
+                       int count = 0;
+                       int matched = 0;
+                       for(j = 0; oldkvs[j] != NULL; j++) count++;
+                       kvs = malloc(sizeof(struct sn_interpreter_kv*) * (count + 1));
+                       count = 0;
+                       for(j = 0; oldkvs[j] != NULL; j++){
                                kvs[count] = oldkvs[j];
+                               if(oldkvs[j]->value == g){
+                                       kvs[count]->value = NULL;
+                               }
                                count++;
-                       }else{
-                               free(oldkvs[j]->key);
                        }
+                       kvs[count] = NULL;
+                       free(oldkvs);
                }
-               kvs[count] = NULL;
-               free(oldkvs);
+               sn->variables = kvs;
        }
-       free(sn->variables);
-       sn->variables = kvs;
 }
 
 void sn_tree_free(struct sn_interpreter* sn, struct sn_tree* t) {