Must declare vrbls at the tops of blocks in C89 (wouldn't compile).

This commit is contained in:
Tim Peters 2003-04-13 03:25:15 +00:00
parent 3576066cad
commit 38fc837fa9
1 changed files with 2 additions and 1 deletions

View File

@ -352,8 +352,9 @@ dialect_init(DialectObj * self, PyObject * args, PyObject * kwargs)
}
/* And extract the attributes */
for (i = 0; i < PyList_GET_SIZE(dir_list); ++i) {
char *s;
name_obj = PyList_GET_ITEM(dir_list, i);
char *s = PyString_AsString(name_obj);
s = PyString_AsString(name_obj);
if (s == NULL)
return -1;
if (s[0] == '_')