Changeset 295
- Timestamp:
- 06/15/10 16:03:16 (20 months ago)
- Files:
-
- 1 modified
-
trunk/src/ows/ows_psql.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/ows/ows_psql.c
r257 r295 479 479 480 480 481 static xmlNodePtr ows_psql_recursive_parse_gml(ows * o, xmlNodePtr n )481 static xmlNodePtr ows_psql_recursive_parse_gml(ows * o, xmlNodePtr n, xmlNodePtr result) 482 482 { 483 483 xmlNodePtr c; 484 static xmlNodePtr result=NULL;485 484 486 485 assert(o != NULL); … … 514 513 if (n->children) 515 514 for (c = n->children ; c ; c = c->next) 516 if ((result = ows_psql_recursive_parse_gml(o, c )))515 if ((result = ows_psql_recursive_parse_gml(o, c, NULL))) 517 516 return result; 518 517 } … … 535 534 assert(n != NULL); 536 535 537 g = ows_psql_recursive_parse_gml(o, n );536 g = ows_psql_recursive_parse_gml(o, n, NULL); 538 537 if (!g) return NULL; /* No Geometry founded in GML doc */ 539 538