From b2699b242d46312be13e7093ecf59ff949a190f7 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sat, 18 Feb 2006 23:44:24 +0000 Subject: [PATCH] Add sizeof() instead of hardcoding variable length --- PC/_winreg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PC/_winreg.c b/PC/_winreg.c index c97bbc6a077..d4027586093 100644 --- a/PC/_winreg.c +++ b/PC/_winreg.c @@ -1033,8 +1033,8 @@ PyEnumKey(PyObject *self, PyObject *args) long rc; PyObject *retStr; char *retBuf; - DWORD len = 256; /* includes NULL terminator */ char tmpbuf[256]; /* max key name length is 255 */ + DWORD len = sizeof(tmpbuf); /* includes NULL terminator */ if (!PyArg_ParseTuple(args, "Oi:EnumKey", &obKey, &index)) return NULL;