bblfsh/python-client

Incorrect bytes in decode kill the python interpreter

ncordon opened this issue · 0 comments

Thanks to @smacker who discovered this issue:

from bblfsh import *
bytes = b''
decode(bytes, format = 0)

kills the Python intrepreter. Also any incorrect sequence of bytes like `bytes = b'abcdef' would produce the same behavior.