From 69b9fcf2971fdfc01536d875ec4ab32314777a43 Mon Sep 17 00:00:00 2001 From: Daniel Veillard Date: Fri, 19 Oct 2007 08:29:13 +0000 Subject: [PATCH] * src/conf.c: documentation cleanups from Jim Meyering * tests/conftest.c: Use fwrite, not printf, since the result buffer is not NUL-terminatedi, from Jim Meyering. * tests/qemuxml2argvtest.c: Initialize vm.migrateFrom[0], to avoid "read-uninitialized" error from within qemudBuildCommandLinei, from Jim Meyering. Daniel --- ChangeLog | 9 +++++++++ src/conf.c | 4 ++-- tests/conftest.c | 5 ++++- tests/qemuxml2argvtest.c | 1 + 4 files changed, 16 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index a0d2e58108..81e5a6bf4b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +Fri Oct 19 10:24:52 CEST 2007 Daniel Veillard + + * src/conf.c: documentation cleanups from Jim Meyering + * tests/conftest.c: Use fwrite, not printf, since the + result buffer is not NUL-terminated. + * tests/qemuxml2argvtest.c: Initialize vm.migrateFrom[0], + to avoid "read-uninitialized" error from within + qemudBuildCommandLine. + Wed Oct 17 11:27:00 BST 2007 Richard W.M. Jones * libvirt.spec.in (BuildRequires): Add "qemu" (Jim Meyering). diff --git a/src/conf.c b/src/conf.c index 3d4615a453..3a637b2c59 100644 --- a/src/conf.c +++ b/src/conf.c @@ -1,7 +1,7 @@ /** * conf.c: parser for a subset of the Python encoded Xen configuration files * - * Copyright (C) 2006 Red Hat, Inc. + * Copyright (C) 2006, 2007 Red Hat, Inc. * * See COPYING.LIB for the License of this software * @@ -916,7 +916,7 @@ error: /** * __virConfWriteMem: * @memory: pointer to the memory to store the config file - * @len: pointer to the lenght in byte of the store, on output the size + * @len: pointer to the length in bytes of the store, on output the size * @conf: the conf * * Writes a configuration file back to a memory area. @len is an IN/OUT diff --git a/tests/conftest.c b/tests/conftest.c index 16346a49b2..604e410ffa 100644 --- a/tests/conftest.c +++ b/tests/conftest.c @@ -24,7 +24,10 @@ int main(int argc, char **argv) { fprintf(stderr, "Failed to serialize %s back\n", argv[1]); exit(3); } - printf("%s", buffer); virConfFree(conf); + if (fwrite(buffer, len, 1, stdout) != len) { + fprintf(stderr, "Write failed\n"); + exit(1); + } exit(0); } diff --git a/tests/qemuxml2argvtest.c b/tests/qemuxml2argvtest.c index f452db69ed..a91cd035a1 100644 --- a/tests/qemuxml2argvtest.c +++ b/tests/qemuxml2argvtest.c @@ -40,6 +40,7 @@ static int testCompareXMLToArgvFiles(const char *xml, const char *cmd) { vm.qemuVersion = 0 * 1000 * 100 + (8 * 1000) + 1; vm.qemuCmdFlags = QEMUD_CMD_FLAG_VNC_COLON | QEMUD_CMD_FLAG_NO_REBOOT; + vm.migrateFrom[0] = '\0'; vmdef->vncActivePort = vmdef->vncPort;