This commit is contained in:
chudov
2012-04-17 01:22:49 +00:00
parent 3a50c03cef
commit 8e61e9b54f
19 changed files with 61 additions and 9 deletions

View File

@@ -99,6 +99,10 @@ namespace CUETools.Processor
return;
}
value = value.Replace('\n', ' ').Replace('\r', ' ').Replace('"', '\'');
if (value.Length > 1024)
value = value.Substring(0, 1021) + "...";
CUELine line = General.FindCUELine(list, command, command2);
if (line == null)
{