Commit d09375d6 authored by Hanno Schlichting's avatar Hanno Schlichting

Fixed a segfault on 64bit platforms when providing the `explicit` argument to...

Fixed a segfault on 64bit platforms when providing the `explicit` argument to the aq_acquire method of an Acquisition wrapper. Thx to LP #675064 for the hint to the solution. The code passed an int instead of a pointer into a function.
parent 4144e075
......@@ -4,6 +4,10 @@ Changelog
2.13.8 (unreleased)
-------------------
- Fixed a segfault on 64bit platforms when providing the `explicit` argument to
the aq_acquire method of an Acquisition wrapper. Thx to LP #675064 for the
hint to the solution. The code passed an int instead of a pointer into a
function.
2.13.7 (2011-03-02)
-------------------
......
......@@ -1251,7 +1251,7 @@ Wrapper_acquire_method(Wrapper *self, PyObject *args, PyObject *kw)
UNLESS (PyArg_ParseTupleAndKeywords(
args, kw, "O|OOOOi", acquire_args+1,
&name, &filter, &extra, &explicit, &defalt, &containment
&name, &filter, &extra, &expl, &defalt, &containment
))
return NULL;
......
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