-
Notifications
You must be signed in to change notification settings - Fork 46
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
OSError: exception: access violation reading 0xFFFFFFFF9419E570 in windows 10 64bite #82
Comments
The error message you're seeing is an access violation, which usually occurs when your program tries to read or write to a part of memory that it shouldn't be accessing. This is often due to issues like passing invalid pointers or incorrect data types to low-level functions, particularly when dealing with C extensions or interfacing with libraries like Here's a breakdown of possible causes and solutions: 1. Incorrect Pointer or Memory Handling:
2. Version Compatibility:
3. Platform-Specific Issues:
4. Debugging Steps:
Example Fix:If the issue is related to the name = _login.name.encode('utf-8') if _login.name else b'Toxygen User'
self.tox.self_set_name(name) If this doesn't help, then the problem might be deeper in the Final Step:If none of these solutions work, consider reaching out to the maintainers of the |
D:\Programs\Python\Python37\python.exe -B "C:/Program Files/JetBrains/PyCharm/plugins/python-ce/helpers/pydev/pydevd.py" --multiprocess --qt-support=auto --client 127.0.0.1 --port 54854 --file C:\Users\lenovo\Desktop\toxygen-master\toxygen\main.py
Connected to pydev debugger (build 233.13135.95)
C:\Users\lenovo\Desktop\toxygen-master\toxygen
Traceback (most recent call last):
File "C:/Program Files/JetBrains/PyCharm/plugins/python-ce/helpers/pydev/pydevd.py", line 1534, in _exec
pydev_imports.execfile(file, globals, locals) # execute the script
File "C:\Program Files\JetBrains\PyCharm\plugins\python-ce\helpers\pydev_pydev_imps_pydev_execfile.py", line 18, in execfile
exec(compile(contents+"\n", file, 'exec'), glob, loc)
File "C:\Users\lenovo\Desktop\toxygen-master\toxygen\main.py", line 487, in
main()
File "C:\Users\lenovo\Desktop\toxygen-master\toxygen\main.py", line 483, in main
toxygen.main()
File "C:\Users\lenovo\Desktop\toxygen-master\toxygen\main.py", line 108, in main
self.tox.self_set_name(bytes(_login.name, 'utf-8') if _login.name else b'Toxygen User')
File "C:\Users\lenovo\Desktop\toxygen-master\toxygen\tox.py", line 356, in self_set_name
c_size_t(len(name)), byref(tox_err_set_info))
OSError: exception: access violation reading 0xFFFFFFFF9419E570
The text was updated successfully, but these errors were encountered: