1
0
mirror of https://github.com/Ylianst/MeshAgent synced 2025-12-19 09:43:20 +00:00

1. Fixed memory corruption in GDI+ initialization

2. Fixed memory leak in message pump
3. Updated enhanced user consent
This commit is contained in:
Bryan Roe
2021-12-10 11:43:52 -08:00
parent 14e54ceda8
commit 1512eb192d
4 changed files with 77 additions and 15 deletions

View File

@@ -175,7 +175,7 @@ function childContainer()
ret._proc = require('child_process').execFile(process.execPath, [process.execPath.split(process.platform == 'win32' ? '\\' : '/').pop(), '-b64exec', script], child_options);
ret._proc.descriptorMetadata = "child-container";
ret._proc.parent = ret;
ret._proc.stdout.on('data', function (c) { });
ret._proc.stdout.on('data', function (c) { console.info2(c.toString()); });
ret._proc.stderr.on('data', function (c) { });
ret._proc.on('exit', function (code)
{