| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| Clean up refleaks on failed module initialisation in in :mod:`_ssl` and :mod:`_socket` |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| Expand Up | @@ -7342,38 +7342,34 @@ PyInit__socket(void) | |
| if (m == NULL) | ||
| return NULL; | ||
|
|
||
| Py_INCREF(PyExc_OSError); | ||
| PyModule_AddObject(m, "error", PyExc_OSError); | ||
| if (PyModule_AddObjectRef(m, "error", PyExc_OSError) != 0) | ||
| return NULL; | ||
| socket_herror = PyErr_NewException("socket.herror", | ||
| PyExc_OSError, NULL); | ||
| if (socket_herror == NULL) | ||
| return NULL; | ||
| Py_INCREF(socket_herror); | ||
| PyModule_AddObject(m, "herror", socket_herror); | ||
| if (PyModule_AddObjectRef(m, "herror", socket_herror) != 0) | ||
| return NULL; | ||
| socket_gaierror = PyErr_NewException("socket.gaierror", PyExc_OSError, | ||
| NULL); | ||
| NULL); | ||
| if (socket_gaierror == NULL) | ||
| return NULL; | ||
| Py_INCREF(socket_gaierror); | ||
| PyModule_AddObject(m, "gaierror", socket_gaierror); | ||
| PyModule_AddObjectRef(m, "timeout", PyExc_TimeoutError); | ||
| if (PyModule_AddObjectRef(m, "gaierror", socket_gaierror) != 0) | ||
| return NULL; | ||
| if (PyModule_AddObjectRef(m, "timeout", PyExc_TimeoutError) != 0) | ||
|
Comment thread
JelleZijlstra marked this conversation as resolved.
|
||
| return NULL; | ||
|
|
||
| Py_INCREF((PyObject *)&sock_type); | ||
| if (PyModule_AddObject(m, "SocketType", | ||
| (PyObject *)&sock_type) != 0) | ||
| if (PyModule_AddObjectRef(m, "SocketType", (PyObject *)&sock_type) != 0) | ||
| return NULL; | ||
| Py_INCREF((PyObject *)&sock_type); | ||
| if (PyModule_AddObject(m, "socket", | ||
| (PyObject *)&sock_type) != 0) | ||
| if (PyModule_AddObjectRef(m, "socket", (PyObject *)&sock_type) != 0) | ||
| return NULL; | ||
|
|
||
| #ifdef ENABLE_IPV6 | ||
| has_ipv6 = Py_True; | ||
| #else | ||
| has_ipv6 = Py_False; | ||
| #endif | ||
| Py_INCREF(has_ipv6); | ||
| PyModule_AddObject(m, "has_ipv6", has_ipv6); | ||
| PyModule_AddObjectRef(m, "has_ipv6", has_ipv6); | ||
|
Comment thread
Copy link
Copy Markdown
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Choose a reason Spam Abuse Off Topic Outdated Duplicate Resolved Low QualityCheck the return value.
Sorry, something went wrong.
All reactions
|
||
|
|
||
| /* Export C API */ | ||
| PySocketModule_APIObject *capi = sock_get_api(); | ||
| Expand Down Expand Up | @@ -8666,7 +8662,8 @@ PyInit__socket(void) | |
| tmp = PyLong_FromUnsignedLong(codes[i]); | ||
| if (tmp == NULL) | ||
| return NULL; | ||
| PyModule_AddObject(m, names[i], tmp); | ||
| PyModule_AddObjectRef(m, names[i], tmp); | ||
|
Comment thread
Copy link
Copy Markdown
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Choose a reason Spam Abuse Off Topic Outdated Duplicate Resolved Low QualityHere too.
Sorry, something went wrong.
All reactions
|
||
| Py_DECREF(tmp); | ||
| } | ||
| } | ||
| PyModule_AddIntMacro(m, RCVALL_OFF); | ||
| Expand Down | ||
| Back | FazBrowse Home | New Git URL |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Choose a reason Spam Abuse Off Topic Outdated Duplicate Resolved Low QualityIsn't this still a leak because we're not checking the return value?
Sorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Choose a reason Spam Abuse Off Topic Outdated Duplicate Resolved Low QualityIt's no longer a leak.
The thing that makes PyModule_AddObject tricky cause leaks is that you have to decref in the failure case, but not in the success case (because it steals the ref). With PyModule_AddObjectRef you can treat the failure and success cases the same in terms of what they do to ref counts.
But yes, in general we should probably be propagating failures here, and the other cases below you commented on. I didn't do it in this PR because it's a slightly separate change and there are many other places in this module where we don't check return values.
Sorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Choose a reason Spam Abuse Off Topic Outdated Duplicate Resolved Low QualityShould I check return values for just the ones I'm touching in this PR or fix all of them?
Sorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Choose a reason Spam Abuse Off Topic Outdated Duplicate Resolved Low QualityThanks for the explanation! I feel it'd be fine to also fix missing error checks in this PR, since the change remains localized and you're fixing a very similar problem to what the PR already fixes.
Sorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.