Skip to content
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

unsafe_wrap cause dead kernel on 0.3.2? #40

Closed
testercwt opened this issue Aug 6, 2020 · 4 comments · Fixed by #41
Closed

unsafe_wrap cause dead kernel on 0.3.2? #40

testercwt opened this issue Aug 6, 2020 · 4 comments · Fixed by #41

Comments

@testercwt
Copy link

testercwt commented Aug 6, 2020

In 0.3.2 , unsafe_wrap used on julia version 1.4.1

@static if VERSION >= v"1.6.0-DEV.438"
        inbuf_view = view(s.inbuf, Int(s.inbytesleft[]+1):BUFSIZE)
    else
        inbuf_view = unsafe_wrap(Array, pointer(s.inbuf, s.inbytesleft[]+1), BUFSIZE)
    end

however, Bounderror or dead kernel occurred while decoding files , but encoding/decoding string is fine
I wonder "unsafe_wrap" maybe the cause

@nalimilan
Copy link
Member

Thanks for the report. Could you post code to reproduce this? Could you try replacing if VERSION >= v"1.6.0-DEV.438" with if true and see if the problem goes away?

@nalimilan
Copy link
Member

nalimilan commented Aug 9, 2020

Actually I think I've found the problem. I wonder why the tests didn't catch it, maybe because the test strings are too short. Please confirm whether version 0.3.3 (JuliaRegistries/General#19227) fixes the crash.

@testercwt
Copy link
Author

Actually I think I've found the problem. I wonder why the tests didn't catch it, maybe because the test strings are too short. Please confirm whether version 0.3.3 (JuliaRegistries/General#19227) fixes the crash.

it fixed on version 0.3.3

@testercwt
Copy link
Author

Thanks for the report. Could you post code to reproduce this? Could you try replacing if VERSION >= v"1.6.0-DEV.438" with if true and see if the problem goes away?

this also fix the problem

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants