Fix mixed sync/async ops on Process streams.

pull/4711/head
Minghao Hu 11 months ago
parent b0c5f74edb
commit ba246e99e8

@ -147,7 +147,7 @@ namespace v2rayN.Handler
} }
} }
private string CoreFindexe(CoreInfo coreInfo) private string CoreFindExe(CoreInfo coreInfo)
{ {
string fileName = string.Empty; string fileName = string.Empty;
foreach (string name in coreInfo.coreExes) foreach (string name in coreInfo.coreExes)
@ -225,7 +225,7 @@ namespace v2rayN.Handler
try try
{ {
var coreInfo = LazyConfig.Instance.GetCoreInfo(ECoreType.Xray); var coreInfo = LazyConfig.Instance.GetCoreInfo(ECoreType.Xray);
string fileName = CoreFindexe(coreInfo); string fileName = CoreFindExe(coreInfo);
if (fileName == "") return -1; if (fileName == "") return -1;
Process p = new() Process p = new()
@ -269,6 +269,7 @@ namespace v2rayN.Handler
if (p.WaitForExit(1000)) if (p.WaitForExit(1000))
{ {
p.CancelErrorRead();
throw new Exception(p.StandardError.ReadToEnd()); throw new Exception(p.StandardError.ReadToEnd());
} }
@ -295,7 +296,7 @@ namespace v2rayN.Handler
{ {
try try
{ {
string fileName = CoreFindexe(coreInfo); string fileName = CoreFindExe(coreInfo);
if (Utils.IsNullOrEmpty(fileName)) if (Utils.IsNullOrEmpty(fileName))
{ {
return null; return null;
@ -343,6 +344,7 @@ namespace v2rayN.Handler
if (proc.WaitForExit(1000)) if (proc.WaitForExit(1000))
{ {
proc.CancelErrorRead();
throw new Exception(displayLog ? proc.StandardError.ReadToEnd() : "启动进程失败并退出 (Failed to start the process and exited)"); throw new Exception(displayLog ? proc.StandardError.ReadToEnd() : "启动进程失败并退出 (Failed to start the process and exited)");
} }

Loading…
Cancel
Save