discohawk-fix bug that made some cue source files whose ffmpeg decode output is very verbose trigger a deadlock through stdout buffer filling up

This commit is contained in:
zeromus 2012-04-19 20:04:52 +00:00
parent 152f6f37e8
commit f2d1f1ff2f
1 changed files with 1 additions and 1 deletions

View File

@ -64,8 +64,8 @@ namespace BizHawk.DiscSystem
oInfo.RedirectStandardError = true;
Process proc = System.Diagnostics.Process.Start(oInfo);
proc.WaitForExit();
string result = proc.StandardError.ReadToEnd();
proc.WaitForExit();
return result;
}