From 4c95dfde981ff062977331963804e0446be1bb3c Mon Sep 17 00:00:00 2001 From: Daniel Veillard Date: Wed, 21 Aug 2002 17:00:38 +0000 Subject: [PATCH] fixed the parameter order when calling Python based extensions. Daniel * python/libxslt.c: fixed the parameter order when calling Python based extensions. Daniel --- ChangeLog | 5 +++++ python/libxslt.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 84a116f9..cbcc1e70 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Wed Aug 21 18:59:28 CEST 2002 Daniel Veillard + + * python/libxslt.c: fixed the parameter order when calling + Python based extensions. + Wed Aug 21 13:48:07 CEST 2002 Daniel Veillard * libxslt/transform.c libxslt/xslt.c: fixed bug #89258 and a bit of diff --git a/python/libxslt.c b/python/libxslt.c index dcf83e3a..5809c203 100644 --- a/python/libxslt.c +++ b/python/libxslt.c @@ -107,7 +107,7 @@ libxslt_xmlXPathFuncCallback(xmlXPathParserContextPtr ctxt, int nargs) { list = PyTuple_New(nargs + 1); PyTuple_SetItem(list, 0, libxml_xmlXPathParserContextPtrWrap(ctxt)); - for (i = 0;i < nargs;i++) { + for (i = nargs - 1;i >= 0;i--) { obj = valuePop(ctxt); cur = libxml_xmlXPathObjectPtrWrap(obj); PyTuple_SetItem(list, i + 1, cur);