diff --git a/projects/determineversion.vbs b/projects/determineversion.vbs index 3fb7e6a6ec..896d3e5e00 100755 --- a/projects/determineversion.vbs +++ b/projects/determineversion.vbs @@ -219,7 +219,7 @@ Function DetermineSVNVersion() If Err.Number = 0 Then Do line = OExec.StdOut.ReadLine() - If Mid(line, 1, 1) <> "?" Then + If Len(line) > 0 And Mid(line, 1, 1) <> "?" Then version = version & "M" Exit Do End If