From: Serhiy Storchaka Date: Fri, 18 Dec 2015 08:06:58 +0000 (+0200) Subject: Issue #25890: Removed yet one unused variable. X-Git-Tag: v3.6.0a1~892 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8bc2b4d5227871d25eeaac91cd64387cc27d6d74;p=thirdparty%2FPython%2Fcpython.git Issue #25890: Removed yet one unused variable. --- diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 81c3c4807e1f..7ec1f47e7e58 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -3460,7 +3460,6 @@ _listdir_windows_no_opendir(path_t *path, PyObject *list) BOOL result; WIN32_FIND_DATA FileData; char namebuf[MAX_PATH+4]; /* Overallocate for "\*.*" */ - char *bufptr = namebuf; /* only claim to have space for MAX_PATH */ Py_ssize_t len = Py_ARRAY_LENGTH(namebuf)-4; wchar_t *wnamebuf = NULL;