search for: 6e91d71

Displaying 4 results from an estimated 4 matches for "6e91d71".

2015 May 14
1
[PATCH] When calling getline first time, initialize length to zero.
...s/libvirt-auth.c +++ b/examples/libvirt-auth.c @@ -109,7 +109,7 @@ auth_callback (guestfs_h *g, size_t i; char *prompt; char *reply = NULL; - size_t allocsize; + size_t allocsize = 0; char *pass; ssize_t len; int r; diff --git a/fuse/test-fuse.c b/fuse/test-fuse.c index 84d58e8..6e91d71 100644 --- a/fuse/test-fuse.c +++ b/fuse/test-fuse.c @@ -250,7 +250,7 @@ test_fuse (void) fflush (stdout) FILE *fp; char *line = NULL; - size_t len; + size_t len = 0; struct stat statbuf; char buf[128]; ssize_t r; diff --git a/p2v/main.c b/p2v/main.c index 15628ba..1f8370b 10064...
2015 Jul 31
14
[PATCH v2 00/14] tests: Introduce test harness for running tests.
This is a more complete patch to add the test harness. The only parts missing now are the language bindings (except OCaml). The language bindings need a bit more thought. At the moment most language binding tests are done through some sort of shell script like perl/run-perl-tests which either runs each test itself or uses some language-specific machinary to run each test. The problem with that
2015 Aug 04
16
[PATCH v3 01/16] tests: Introduce test harness for running tests.
Since v2: - Add perl tests. - Reworked and fixed the tests for virt-builder. - Some further minor bug fixes.
2015 Aug 06
20
[PATCH v4 00/17] tests: Introduce test harness for running tests.
Since v3: - A large number of fixes, especially for running the tests on installed libguestfs. - Fixed EXTRA_DIST rules throughout. - Extra patch 17/17 which is a tidy-up of the generated XML listing guests. Rich.