Reduce length by 1 if there is a trailing zero at the end

This commit is contained in:
Yohann D'ANELLO 2021-01-09 20:56:02 +01:00
parent d8cabcc6a3
commit dbf3953ad4
Signed by: ynerant
GPG Key ID: 3A75C55819C8CF85
1 changed files with 1 additions and 0 deletions

View File

@ -285,6 +285,7 @@ class DataTLV(TLV):
self.data = raw_data[14:len(self)]
if self.data[-1] == 0:
self.data = self.data[:-1]
self.length -= 1
def marshal(self) -> bytes:
return self.type.to_bytes(1, sys.byteorder) + \