Skip to content
Snippets Groups Projects
Commit befed8f5879e authored by Daniel Veillard's avatar Daniel Veillard
Browse files

Alexey Efimov found a typo bug in exsltStrPaddingFunction() Daniel

* libexslt/strings.c: Alexey Efimov found a typo bug in
  exsltStrPaddingFunction()
Daniel
parent 4af6076962eb
No related branches found
No related tags found
No related merge requests found
Thu Dec 26 15:43:31 CET 2002 Daniel Veillard <daniel@veillard.com>
* libexslt/strings.c: Alexey Efimov found a typo bug in
exsltStrPaddingFunction()
Mon Dec 23 15:43:59 CET 2002 Daniel Veillard <daniel@veillard.com>
* python/libxslt.c: patch from Stphane Bidoul for Python 2.1
......
......@@ -119,7 +119,7 @@
int number, str_len = 0;
xmlChar *str = NULL, *ret = NULL, *tmp;
if ((nargs < 1) && (nargs > 2)) {
if ((nargs < 1) || (nargs > 2)) {
xmlXPathSetArityError(ctxt);
return;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment