We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 035d6c8 commit b8f66c4Copy full SHA for b8f66c4
1 file changed
src/Packages/UnityWebBrowser/Runtime/Core/Engines/Process/WindowProcess.cs
@@ -21,7 +21,7 @@ public WindowProcess()
21
{
22
//Job handle code from SO
23
//https://stackoverflow.com/questions/3342941/kill-child-process-when-parent-process-is-killed
24
- string jobName = "UWBChildProcesses" + new Guid().ToString("N");
+ string jobName = "UWBChildProcesses" + Guid.NewGuid().ToString("N");
25
jobHandle = CreateJobObject(IntPtr.Zero, jobName);
26
27
JOBOBJECT_BASIC_LIMIT_INFORMATION info = new()
0 commit comments