We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I notice that Nemo.jl uses jl_calloc. Just be warned that currently the integer multiplication overflows: JuliaLang/julia#42673
jl_calloc
It may return a non-null value and not allocate the memory requested.
julia> ccall(:jl_calloc,Ptr{Nothing},(Csize_t, Csize_t), 0xffffffffffffffff, 0xffffffffffffffff) Ptr{Nothing} @0x000000001ebd1180
The text was updated successfully, but these errors were encountered:
Thanks for letting us know.
Sorry, something went wrong.
It should be fixed by 1.8: JuliaLang/julia#42761
No branches or pull requests
I notice that Nemo.jl uses
jl_calloc
. Just be warned that currently the integer multiplication overflows:JuliaLang/julia#42673
It may return a non-null value and not allocate the memory requested.
The text was updated successfully, but these errors were encountered: