Browse Source

Fix potential NULL pointer dereferencing in ast module

CID 719690
pull/224/head
Christian Heimes 13 years ago
parent
commit
72f562f719
  1. 2
      Python/ast.c

2
Python/ast.c

@ -535,11 +535,11 @@ init_normalization(struct compiling *c)
if (!c->c_normalize)
return 0;
c->c_normalize_args = Py_BuildValue("(sN)", "NFKC", Py_None);
PyTuple_SET_ITEM(c->c_normalize_args, 1, NULL);
if (!c->c_normalize_args) {
Py_CLEAR(c->c_normalize);
return 0;
}
PyTuple_SET_ITEM(c->c_normalize_args, 1, NULL);
return 1;
}

Loading…
Cancel
Save