qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] migration/qemu-file: Fix maybe uninitialized on qemu_get_buffer_in_place()
@ 2021-01-28 13:06 Wainer dos Santos Moschetta
  2021-01-28 17:16 ` Dr. David Alan Gilbert
  0 siblings, 1 reply; 6+ messages in thread
From: Wainer dos Santos Moschetta @ 2021-01-28 13:06 UTC (permalink / raw)
  To: qemu-devel; +Cc: dgilbert, quintela

Fixed error when compiling migration/qemu-file.c with -Werror=maybe-uninitialized
as shown here:

../migration/qemu-file.c: In function 'qemu_get_buffer_in_place':
../migration/qemu-file.c:604:18: error: 'src' may be used uninitialized in this function [-Werror=maybe-uninitialized]
  604 |             *buf = src;
      |             ~~~~~^~~~~
cc1: all warnings being treated as errors

Signed-off-by: Wainer dos Santos Moschetta <wainersm@redhat.com>
---
Passed on CI: https://gitlab.com/wainersm/qemu/-/pipelines/247801576

 migration/qemu-file.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/migration/qemu-file.c b/migration/qemu-file.c
index be21518c57..d6e03dbc0e 100644
--- a/migration/qemu-file.c
+++ b/migration/qemu-file.c
@@ -595,7 +595,7 @@ size_t qemu_get_buffer_in_place(QEMUFile *f, uint8_t **buf, size_t size)
 {
     if (size < IO_BUF_SIZE) {
         size_t res;
-        uint8_t *src;
+        uint8_t *src = NULL;
 
         res = qemu_peek_buffer(f, &src, size, 0);
 
-- 
2.28.0



^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2021-02-04 14:36 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-01-28 13:06 [PATCH] migration/qemu-file: Fix maybe uninitialized on qemu_get_buffer_in_place() Wainer dos Santos Moschetta
2021-01-28 17:16 ` Dr. David Alan Gilbert
2021-01-28 18:07   ` Philippe Mathieu-Daudé
2021-01-28 18:18     ` Wainer dos Santos Moschetta
2021-01-28 18:36     ` Dr. David Alan Gilbert
2021-02-04 14:33   ` Dr. David Alan Gilbert

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).