Python Ubuntu pypxlib stack smashing detected

212 views Asked by At

I have a simple code to convert the Paradox DB to a dictionary and save it in a .dat with pickle.

In Windows, all works great but in Ubuntu 20 Server and venv for python 3.8 I have this issue.

*** stack smashing detected ***:
terminated Aborted (core dumped)

This is the error in my code:

from pypxlib import Table
table = Table("/complete/path/database.DB")
for x in table:
    print(x)

Has someone any idea about this?

0

There are 0 answers