Kaydet (Commit) 38fc837f authored tarafından Tim Peters's avatar Tim Peters

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

üst 3576066c
......@@ -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] == '_')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment