X-Git-Url: http://git.ithinksw.org/~jspiros/python-ebml.git/blobdiff_plain/d8f926028d6d4368348ad27fb2c7beef29eda9c0..e9ebfb809d0ecdf003d33fcd1a08246895d7b6b0:/ebml/core.py diff --git a/ebml/core.py b/ebml/core.py index e076c8b..0f390a8 100644 --- a/ebml/core.py +++ b/ebml/core.py @@ -189,6 +189,7 @@ def read_string(stream, size): value = '' if size > 0: value = stream.read(size) + value = value.rstrip(chr(0)) return value @@ -208,6 +209,7 @@ def read_unicode_string(stream, size): value = u'' if size > 0: data = stream.read(size) + data = data.rstrip(chr(0)) value = unicode(data, 'utf_8') return value