[Python-checkins] r42483 - python/trunk/PC/_winreg.c

tim.peters python-checkins at python.org
Sun Feb 19 04:34:16 CET 2006


Author: tim.peters
Date: Sun Feb 19 04:34:15 2006
New Revision: 42483

Modified:
   python/trunk/PC/_winreg.c
Log:
PyEnumKey():  Remove unused local.


Modified: python/trunk/PC/_winreg.c
==============================================================================
--- python/trunk/PC/_winreg.c	(original)
+++ python/trunk/PC/_winreg.c	Sun Feb 19 04:34:15 2006
@@ -1032,7 +1032,6 @@
 	int index;
 	long rc;
 	PyObject *retStr;
-	char *retBuf;
 	char tmpbuf[256]; /* max key name length is 255 */
 	DWORD len = sizeof(tmpbuf); /* includes NULL terminator */
 


More information about the Python-checkins mailing list