Skip to content
This repository has been archived by the owner on Sep 11, 2023. It is now read-only.

Commit

Permalink
Fix Critical Crash
Browse files Browse the repository at this point in the history
  • Loading branch information
Hexer10 committed Apr 1, 2020
1 parent 3b4ee53 commit e933254
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion App/AssemblyInfo1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@
#if (DEBUG)
[assembly: AssemblyVersion("1.13.*")]
#else
[assembly: AssemblyVersion("1.3.4.1")]
[assembly: AssemblyVersion("1.3.4.2")]
#endif
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,10 @@ public static List<SMVariable> ConsumeSMVariableLocal(Token[] t, string FileName

if (t[position + index + 1].Kind != TokenKind.Assignment ||
t[position + index + 2].Kind != TokenKind.New || t[position + index + 3].Value != varType)
{
position++;
continue;
}

for (var i = index + 4; i < length - 2; i += 3)
{
Expand Down
1 change: 0 additions & 1 deletion Utils/FTP.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using System;
using System.IO;
using System.Net;
using System.Text;
using Renci.SshNet;

namespace Spedit.Utils
Expand Down

0 comments on commit e933254

Please sign in to comment.