Skip to content

Commit

Permalink
Fixed bug in translating browse paths to node IDs.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jiří Skála committed Oct 24, 2019
1 parent d416667 commit 7a5f1b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion LibUA/Client.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2721,7 +2721,7 @@ public StatusCode TranslateBrowsePathsToNodeIds(BrowsePath[] requests, out Brows
succeeded &= sendBuf.Encode(reqHeader);

succeeded &= sendBuf.Encode((UInt32)requests.Length);
for (int i = 0; i < results.Length; i++)
for (int i = 0; i < requests.Length; i++)
{
succeeded &= sendBuf.Encode(requests[i]);
}
Expand Down

0 comments on commit 7a5f1b2

Please sign in to comment.