mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
properly quote the namespace uris written out during c14n
This commit is contained in:
parent
a75a009d12
commit
1ba80b7b6f
9
c14n.c
9
c14n.c
@ -547,14 +547,15 @@ xmlC14NPrintNamespaces(const xmlNsPtr ns, xmlC14NCtxPtr ctx)
|
||||
if (ns->prefix != NULL) {
|
||||
xmlOutputBufferWriteString(ctx->buf, " xmlns:");
|
||||
xmlOutputBufferWriteString(ctx->buf, (const char *) ns->prefix);
|
||||
xmlOutputBufferWriteString(ctx->buf, "=\"");
|
||||
xmlOutputBufferWriteString(ctx->buf, "=");
|
||||
} else {
|
||||
xmlOutputBufferWriteString(ctx->buf, " xmlns=\"");
|
||||
xmlOutputBufferWriteString(ctx->buf, " xmlns=");
|
||||
}
|
||||
if(ns->href != NULL) {
|
||||
xmlOutputBufferWriteString(ctx->buf, (const char *) ns->href);
|
||||
xmlBufWriteQuotedString(ctx->buf->buffer, ns->href);
|
||||
} else {
|
||||
xmlOutputBufferWriteString(ctx->buf, "\"\"");
|
||||
}
|
||||
xmlOutputBufferWriteString(ctx->buf, "\"");
|
||||
return (1);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user