-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Segmentation fault with hdf5 serialization #122
Comments
The data it is trying to write are (from Serializer::executeAgentSerialization):
|
After some more debugging I found that the problem happens if the array has more than one element (usually has one element per agent). If I just leave only one string it works fine. |
This is confirmed because if I serialize each agent id separately it (seems to) work (no segfault):
|
Everything points to a problem into the way the original code access the dataset, because I can write the data with this (inspired from SO):
|
Okay, now it works if I convert the string to serialize to a continous array first:
|
Dear all,
I have a strange error on F24. The serialization code fails with SIGSEG:
I've tried to debug it for a while but I cannot understand why it's happening. I link against a parallel version of hdf5 v1.8.17 built separately
Thanks for any help you could give me.
Best,
Mario
The text was updated successfully, but these errors were encountered: