Fixed the problem that `ksynth_free` was not releasing the memory of samples and...
authorkazu <kazu@7b47e76f-e598-2f43-bc14-414d160cc389>
Sat, 20 Apr 2024 05:20:30 +0000 (05:20 +0000)
committerkazu <kazu@7b47e76f-e598-2f43-bc14-414d160cc389>
Sat, 20 Apr 2024 05:20:30 +0000 (05:20 +0000)
git-svn-id: file:///raid/svn-main/kazu-ksynth/trunk@30 7b47e76f-e598-2f43-bc14-414d160cc389

src/ksynth.c

index 2e2104078e4e3c47883249f108f1f0612cb901e1..b33fbf51f7f927d42b139659308893144578174e 100644 (file)
@@ -438,6 +438,27 @@ void ksynth_buffer_free(float* buffer) {
 
 void ksynth_free(struct KSynth* ksynth_instance) {
        if(ksynth_instance != NULL) {
+               if(ksynth_instance->samples != NULL) {
+                       for(int i = 0; i < 128; i++) {
+                               if(ksynth_instance->samples[i] != NULL) {
+                                       free(ksynth_instance->samples[i]->sample);
+                                       free(ksynth_instance->samples[i]);
+                               }
+                       }
+                       free(ksynth_instance->samples);
+                       ksynth_instance->samples = NULL;
+               }
+
+               if(ksynth_instance->voices != NULL) {
+                       for(unsigned long i = 0; i < ksynth_instance->max_polyphony; i++) {
+                               if(ksynth_instance->voices[i] != NULL) {
+                                       free(ksynth_instance->voices[i]);
+                               }
+                       }
+                       free(ksynth_instance->voices);
+                       ksynth_instance->voices = NULL;
+               }
+
                free(ksynth_instance);
        }
 }