
On 08/10/2011 10:02 PM, Eric Blake wrote:
On 08/10/2011 08:33 PM, Daniel Veillard wrote:
On Wed, Aug 10, 2011 at 05:02:37PM -0600, Eric Blake wrote:
Found this while revising the previous patch to use xpath rather than strstr for undoing the escapse.
typo, "escape"
I adjusted the message to fix that, then pushed this one first after all.
virBufferAddLit(&buf, "<domainsnapshot>\n"); if (name) - virBufferAsprintf(&buf, "<name>%s</name>\n", name); + virBufferEscapeString(&buf, "<name>%s</name>\n", name); if (desc) - virBufferAsprintf(&buf, "<description>%s</description>\n", desc); + virBufferEscapeString(&buf, "<description>%s</description>\n", desc); virBufferAddLit(&buf, "</domainsnapshot>\n");
buffer = virBufferContentAndReset(&buf);
Ah, right ! ACK
Shame on me for not testing this further. snapshot-create-as can now create weird names, but until virDomainSnapshotGetXMLDesc is fixed to re-output those names correctly, it's a one-way trip and still broken. domain_conf.c needs the same fix. -- Eric Blake eblake@redhat.com +1-801-349-2682 Libvirt virtualization library http://libvirt.org