Browse Source

Corrected assembly of AndX Response chain

Tal Aloni 7 years ago
parent
commit
d715acb050
1 changed files with 6 additions and 1 deletions
  1. 6 1
      SMBLibrary/Server/SMBServer.SMB1.cs

+ 6 - 1
SMBLibrary/Server/SMBServer.SMB1.cs

@@ -42,12 +42,17 @@ namespace SMBLibrary.Server
                     reply.Header = header;
                     for (int index = 0; index < responses.Count; index++)
                     {
-                        if (responses[index] is SMBAndXCommand || index == responses.Count - 1)
+                        if (reply.Commands.Count == 0 ||
+                            reply.Commands[reply.Commands.Count - 1] is SMBAndXCommand)
                         {
                             reply.Commands.Add(responses[index]);
                             responses.RemoveAt(index);
                             index--;
                         }
+                        else
+                        {
+                            break;
+                        }
                     }
                     EnqueueMessage(state, reply);
                 }