Skip to content

Commit

Permalink
Merge pull request GavinYellow#1 from GavinYellow/master
Browse files Browse the repository at this point in the history
fix a bug in daservice
  • Loading branch information
kevin100702 authored May 2, 2018
2 parents 2bfaa9c + c2e1f58 commit e194f4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SCADA/Program/BatchCoreService/DAService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1446,7 +1446,7 @@ private void SendData(object obj)
sendBuffer[4] = dt1[1];
SocketError err;
//bytes.CopyTo(bytes2, 0);
List<Socket> sockets = new List<Socket>(_socketThreadList.Count);
List<Socket> sockets = new List<Socket>();
foreach (var socket in _socketThreadList)
{
if (!socket.Key.Equals(tempdata.Address))
Expand Down

0 comments on commit e194f4a

Please sign in to comment.