Skip to content

Commit

Permalink
Fix en/decoding for templates with varlen for first ie
Browse files Browse the repository at this point in the history
This fixes britram#24 - should have looked at the issue tracker before looking
into the problem....
  • Loading branch information
notti committed Aug 21, 2018
1 parent e487dfb commit 0679684
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ipfix/template.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ def decode_from(self, buf, offset, packplan = None):
offset += packplan.st.size

# short circuit on no varlen
if not self.varlenslice:
if self.varlenslice is None:
return (vals, offset)

# direct iteration over remaining IEs
Expand Down Expand Up @@ -239,7 +239,7 @@ def encode_to(self, buf, offset, vals, packplan = None):
offset += packplan.st.size

# shortcircuit no varlen
if not self.varlenslice:
if self.varlenslice is None:
return offset

# direct iteration over remaining IEs
Expand Down

0 comments on commit 0679684

Please sign in to comment.