Skip to content

Commit

Permalink
Merge branch 'DI-IoC'
Browse files Browse the repository at this point in the history
  • Loading branch information
Crypt32 committed Nov 29, 2018
2 parents 3f45f4d + 800794c commit 435cefe
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Asn1Editor/API/Utils/ASN/AsnTreeBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public static class AsnTreeBuilder {
index++;
} while (root.MoveNextCurrentLevel());
root.Reset();
foreach (Asn1TreeNode node in tree.Children.Where(node => node.Value.IsContainer)) {
foreach (Asn1TreeNode node in tree.Children.Where(node => node.Value.IsContainer && node.Value.PayloadLength > 0)) {
root.MoveToPosition(node.Value.Offset);
buildTree(root, node);
}
Expand Down
Binary file modified Asn1Editor/_ExternalReferences/SysadminsLV.Asn1Parser.dll
Binary file not shown.

0 comments on commit 435cefe

Please sign in to comment.