qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH 05/10] tests/hd-geo-test: Clean up global variable shadowing


From: Philippe Mathieu-Daudé
Subject: Re: [PATCH 05/10] tests/hd-geo-test: Clean up global variable shadowing
Date: Mon, 9 Oct 2023 12:06:28 +0200
User-agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:102.0) Gecko/20100101 Thunderbird/102.15.1

On 9/10/23 12:02, Philippe Mathieu-Daudé wrote:
Rename the variable to fix:

   tests/qtest/hd-geo-test.c:610:11: error: declaration shadows a variable in 
the global scope [-Werror,-Wshadow]
       char *img_file_name;
             ^
   tests/qtest/hd-geo-test.c:80:14: note: previous declaration is here
   static char *img_file_name[backend_last];
                ^

Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
---
  tests/qtest/hd-geo-test.c | 12 ++++++++----
  1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/tests/qtest/hd-geo-test.c b/tests/qtest/hd-geo-test.c
index d08bffad91..e5e28c412d 100644
--- a/tests/qtest/hd-geo-test.c
+++ b/tests/qtest/hd-geo-test.c
@@ -78,6 +78,7 @@ static const CHST hd_chst[backend_last][mbr_last] = {
  };
static char *img_file_name[backend_last];
+static char *qcow2_imgpath;
static const CHST *cur_ide[4]; @@ -607,18 +608,17 @@ static TestArgs *create_args(void)
  static void add_drive_with_mbr(TestArgs *args,
                                 MBRpartitions mbr, uint64_t sectors)
  {
-    char *img_file_name;
      char part[300];
      int ret;
g_assert(args->n_drives < MAX_DRIVES); - img_file_name = create_qcow2_with_mbr(mbr, sectors);
+    qcow2_imgpath = create_qcow2_with_mbr(mbr, sectors);
- args->drives[args->n_drives] = img_file_name;
+    args->drives[args->n_drives] = qcow2_imgpath;
      ret = snprintf(part, sizeof(part),
                     "-drive file=%s,if=none,format=qcow2,id=disk%d",
-                   img_file_name, args->n_drives);
+                   qcow2_imgpath, args->n_drives);
      g_assert((0 < ret) && (ret <= sizeof(part)));
      args->argc = append_arg(args->argc, args->argv, ARGV_SIZE, 
g_strdup(part));
      args->n_drives++;
@@ -1139,6 +1139,10 @@ test_add_done:
              g_free(img_file_name[i]);
          }
      }
+    if (qcow2_imgpath) {
+        unlink(qcow2_imgpath);
+        g_free(qcow2_imgpath);

Oops I squashed this part while rebasing, this was supposed to
be a different patch.

+    }
return ret;
  }




reply via email to

[Prev in Thread] Current Thread [Next in Thread]