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

try to fix #153137 but without a test case it's shooting in the dark.

* libxslt/pattern.c: try to fix #153137 but without a test case
  it's shooting in the dark.
Daniel
parent 40f72f4a18a8
Branches
No related tags found
No related merge requests found
Wed Sep 29 15:42:33 CEST 2004 Daniel Veillard <daniel@veillard.com>
* libxslt/pattern.c: try to fix #153137 but without a test case
it's shooting in the dark.
Tue Sep 28 16:20:48 CEST 2004 Daniel Veillard <daniel@veillard.com>
* doc/tutorial2/libxslt_pipes.*: New tutorial from Panagiotis Louridas
......
......@@ -770,7 +770,9 @@
* If the node is in a Value Tree we cannot
* cache it !
*/
if (node->doc != NULL) {
if ((node->doc != NULL) &&
(node->doc->name != NULL) &&
(node->doc->name[0] != ' ')) {
len = (int)
XSLT_RUNTIME_EXTRA(ctxt, select->lenExtra);
XSLT_RUNTIME_EXTRA(ctxt,
......@@ -875,7 +877,9 @@
* If the node is in a Value Tree we cannot
* cache it !
*/
if (node->doc != NULL) {
if ((node->doc != NULL) &&
(node->doc->name != NULL) &&
(node->doc->name[0] != ' ')) {
len = (int)
XSLT_RUNTIME_EXTRA(ctxt, select->lenExtra);
XSLT_RUNTIME_EXTRA(ctxt,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment