From bd870f232154a4d9219963d0f6d115366d8535c1 Mon Sep 17 00:00:00 2001 From: Dadoum Date: Fri, 16 Jun 2023 20:56:23 +0200 Subject: [PATCH] Fix GC issue --- source/app.d | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/source/app.d b/source/app.d index e5fe722..1d33818 100644 --- a/source/app.d +++ b/source/app.d @@ -104,7 +104,7 @@ int main(string[] args) { // Initializing ADI and machine if it has not already been made. v1Device = new Device(configurationPath.buildPath("device.json")); - v1Adi = makeGarbageCollectedADI(libraryPath); + v1Adi = new ADI(libraryPath); v1Adi.provisioningPath = configurationPath; if (!v1Device.initialized) { @@ -217,6 +217,10 @@ class AnisetteService { file.mkdir(provisioningPath); file.write(provisioningPath.buildPath("adi.pb"), adi_pb); + + GC.disable(); // garbage collector can deallocate ADI parts since it can't find the pointers. + scope(exit) GC.enable(); + ADI adi = makeGarbageCollectedADI(libraryPath); adi.provisioningPath = provisioningPath; adi.identifier = identifier.toUpper()[0..16]; @@ -300,6 +304,8 @@ class AnisetteService { string identifier = UUID(requestedIdentifier[0..16]).toString(); log.infoF!("[<<] Correct identifier (%s).")(identifier); + GC.disable(); // garbage collector can deallocate ADI parts since it can't find the pointers. + scope(exit) GC.enable(); ADI adi = makeGarbageCollectedADI(libraryPath); auto provisioningPath = file.getcwd() .buildPath("provisioning")