From: Tim Peters Date: Sun, 19 Feb 2006 03:34:15 +0000 (+0000) Subject: PyEnumKey(): Remove unused local. X-Git-Tag: v2.5a0~601 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d9ab979f3696cec37fd51cfa5a45ec898a133698;p=thirdparty%2FPython%2Fcpython.git PyEnumKey(): Remove unused local. --- diff --git a/PC/_winreg.c b/PC/_winreg.c index d4027586093a..b80271d60394 100644 --- a/PC/_winreg.c +++ b/PC/_winreg.c @@ -1032,7 +1032,6 @@ PyEnumKey(PyObject *self, PyObject *args) int index; long rc; PyObject *retStr; - char *retBuf; char tmpbuf[256]; /* max key name length is 255 */ DWORD len = sizeof(tmpbuf); /* includes NULL terminator */