JuliaIO / JLD2.jl

HDF5-compatible file format in pure Julia
Other
547 stars 85 forks source link

Don't access `.size` directly #437

Closed vchuravy closed 1 year ago

vchuravy commented 1 year ago

This broke on Julia nightly

https://s3.amazonaws.com/julialang-reports/nanosoldier/pkgeval/by_hash/f1ae425_vs_317211a/Bio3DView.against.log

x-ref: https://github.com/JuliaLang/julia/pull/47170

JonasIsensee commented 1 year ago

This doesn't quite yet fix it, since apparently JLD2 sometimes accessed .size of objects like Symbol which don't have a fixed size. .size is then set to 0 but sizeof returns an error.

JonasIsensee commented 1 year ago

Thanks. This was fixed in #438