Skip to content

Commit f1608b7

Browse files
committed
Fix compilation error on Windows.
1 parent 2006505 commit f1608b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_mysql.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -434,11 +434,11 @@ _mysql_ResultObject_Initialize(
434434
}
435435
else if (PySequence_Check(fun)) {
436436
long flags = fields[i].flags;
437+
PyObject *fun2=NULL;
437438
int j, n2=PySequence_Size(fun);
438439
if (fields[i].charsetnr != 63) { /* maaagic */
439440
flags &= ~BINARY_FLAG;
440441
}
441-
PyObject *fun2=NULL;
442442
for (j=0; j<n2; j++) {
443443
PyObject *t = PySequence_GetItem(fun, j);
444444
if (!t) {

0 commit comments

Comments
 (0)