]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Issue #25890: Removed yet one unused variable.
authorSerhiy Storchaka <storchaka@gmail.com>
Fri, 18 Dec 2015 08:06:58 +0000 (10:06 +0200)
committerSerhiy Storchaka <storchaka@gmail.com>
Fri, 18 Dec 2015 08:06:58 +0000 (10:06 +0200)
Modules/posixmodule.c

index 81c3c4807e1fa3ed87d119a9eb7eed7fcaafb1a3..7ec1f47e7e58c070b4f809d0a12b2166613703c4 100644 (file)
@@ -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;