NACM RFC341 datanode paths, read operation

This commit is contained in:
Olof hagsand 2020-04-14 11:38:29 +02:00
parent 58c36decef
commit ba59e22fd7
26 changed files with 689 additions and 325 deletions

View file

@ -152,11 +152,13 @@ xml_nsctx_get_prefix(cvec *cvv,
while ((cv = cvec_each(cvv, cv)) != NULL){
if ((ns = cv_string_get(cv)) != NULL &&
strcmp(ns, namespace) == 0){
*prefix = cv_name_get(cv); /* can be NULL */
if (prefix)
*prefix = cv_name_get(cv); /* can be NULL */
return 1;
}
}
*prefix = NULL;
if (prefix)
*prefix = NULL;
return 0;
}
@ -493,7 +495,6 @@ xmlns_set(cxobj *x,
goto done;
if (xml_prefix_set(xa, "xmlns") < 0)
goto done;
}
else{ /* xmlns="<uri>" */
if ((xa = xml_new("xmlns", x, CX_ATTR)) == NULL)