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?