mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
bpo-38823: Clean up _xxtestfuzz initialization. (GH-17216)
https://bugs.python.org/issue38823
This commit is contained in:
parent
559bad1a70
commit
e5d1f734db
1 changed files with 1 additions and 6 deletions
|
@ -44,10 +44,5 @@ static struct PyModuleDef _fuzzmodule = {
|
|||
PyMODINIT_FUNC
|
||||
PyInit__xxtestfuzz(void)
|
||||
{
|
||||
PyObject *m = NULL;
|
||||
|
||||
if ((m = PyModule_Create(&_fuzzmodule)) == NULL) {
|
||||
return NULL;
|
||||
}
|
||||
return m;
|
||||
return PyModule_Create(&_fuzzmodule);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue