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:
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user