aboutsummaryrefslogtreecommitdiff
path: root/ber/new/common.go
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2015-09-26 01:12:56 +0200
committerDimitri Sokolyuk <demon@dim13.org>2015-09-26 01:12:56 +0200
commit5af0f05f46a87c088123dc8a3f099cd393270e1e (patch)
tree9d4dd4d136f65495b5e4d140ecb830d9dc2b7a03 /ber/new/common.go
parent0f6b658abb865dd6f95efc6b4fe5d05d849c332b (diff)
Geting closer
Diffstat (limited to 'ber/new/common.go')
-rw-r--r--ber/new/common.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/ber/new/common.go b/ber/new/common.go
index feb257e..b5884ae 100644
--- a/ber/new/common.go
+++ b/ber/new/common.go
@@ -21,7 +21,8 @@ func (s *state) subState() *state {
}
func (s *state) next() []byte {
- return s.Next(s.unmarshalLen())
+ l := s.unmarshalLen()
+ return s.Next(l)
}
type OID []int