mirror of
https://github.com/python/cpython.git
synced 2024-11-27 23:47:29 +01:00
8717f792f7
For dlsym(), a return value of NULL does not necessarily indicate an error [1]. Therefore, to avoid using stale (or NULL) dlerror() values, we must: 1. clear the previous error state by calling dlerror() 2. call dlsym() 3. call dlerror() If the return value of dlerror() is not NULL, an error occured. In ctypes we choose to treat a NULL return value from dlsym() as a "not found" error. This is the same as the fallback message we use on Windows, Cygwin or when getting/formatting the error reason fails. [1]: https://man7.org/linux/man-pages/man3/dlsym.3.html Signed-off-by: Georgios Alexopoulos <grgalex42@gmail.com> Signed-off-by: Georgios Alexopoulos <grgalex@ba.uoa.gr> Co-authored-by: Peter Bierma <zintensitydev@gmail.com> Co-authored-by: Bénédikt Tran <10796600+picnixz@users.noreply.github.com> Co-authored-by: Petr Viktorin <encukou@gmail.com> |
||
---|---|---|
.. | ||
2024-06-04-13-38-44.gh-issue-120026.uhEvJ9.rst | ||
2024-07-30-14-40-08.gh-issue-121654.tgGeAl.rst | ||
2024-09-03-13-33-33.gh-issue-123619.HhgUUI.rst | ||
2024-10-16-19-28-23.gh-issue-125608.gTsU2g.rst | ||
2024-10-28-15-56-03.gh-issue-126061.Py51_1.rst | ||
2024-11-07-20-24-58.gh-issue-126554.ri12eb.rst |