mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Remove useless assignments
Warnings found by the the Clang Static Analyzer.
This commit is contained in:
parent
58bc7a134e
commit
25095b2be6
2 changed files with 4 additions and 9 deletions
|
@ -1733,7 +1733,6 @@ find_module_path(PyObject *fullname, PyObject *name, PyObject *path,
|
|||
Py_UNICODE buf[MAXPATHLEN+1];
|
||||
Py_ssize_t buflen = MAXPATHLEN+1;
|
||||
PyObject *path_unicode, *filename;
|
||||
const Py_UNICODE *base;
|
||||
Py_ssize_t len;
|
||||
struct stat statbuf;
|
||||
static struct filedescr fd_package = {"", "", PKG_DIRECTORY};
|
||||
|
@ -1751,7 +1750,6 @@ find_module_path(PyObject *fullname, PyObject *name, PyObject *path,
|
|||
else
|
||||
return 0;
|
||||
|
||||
base = PyUnicode_AS_UNICODE(path_unicode);
|
||||
len = PyUnicode_GET_SIZE(path_unicode);
|
||||
if (len + 2 + PyUnicode_GET_SIZE(name) + MAXSUFFIXSIZE >= buflen) {
|
||||
Py_DECREF(path_unicode);
|
||||
|
@ -2275,12 +2273,10 @@ case_ok(PyObject *filename, Py_ssize_t prefix_delta, PyObject *name)
|
|||
static int
|
||||
find_init_module(PyObject *directory)
|
||||
{
|
||||
size_t len;
|
||||
struct stat statbuf;
|
||||
PyObject *filename;
|
||||
int match;
|
||||
|
||||
len = PyUnicode_GET_SIZE(directory);
|
||||
filename = PyUnicode_FromFormat("%U%c__init__.py", directory, SEP);
|
||||
if (filename == NULL)
|
||||
return -1;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue