-
Notifications
You must be signed in to change notification settings - Fork 52
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
NULL pointer acess on Windows 7 #137
Comments
either there's no permission or something has changed in C api. Windows 7 is quite old as well. Are you experiencing this on other versions of windows? |
I haven't tried on other versions of Windows yet, but I will try it on this weekend. |
I just tested on Windows 10 64bit, this issue didn't happen. |
Experiencing this issue on Windows 10 64bit. Machine is the same system as referenced in mentioned pupil-labs issue #2098. FWIW, I'm not a Windows guy, so I'm at a bit of a loss to diagnose the problem further, but here are my observations. I Dug into the code of zhelper.py and it appears that the issue may involve Windows networking stack API changes or the expected dependencies of the underlying system not being met, and those failures not being tested for or reported. Line 79 of zhelper.py on Windows appears to be looking for python 2.x, and makes no provisions for 3.x. As a result, win_inet_pton is never imported on our system. I am unsure if this is of any consequence.
The Linux/OSX version of FWIW we managed to find a workaround by removing |
Possible workaround for zeromq#137
Possible workaround for zeromq#137
I just tried pyre on Windows 7 and got an exception right here: https://github.com/zeromq/pyre/blob/master/pyre/zhelper.py#L527
Full stack traceback:
A workaround is to add
try...except
around the block insidefor
loop, andcontinue
on exception but maybe it's not a solution for the bug.The text was updated successfully, but these errors were encountered: