]> xenbits.xensource.com Git - libvirt.git/commitdiff
virt-aa-helper: Use struct zero initializer instead of memset
authorMichal Privoznik <mprivozn@redhat.com>
Wed, 2 Aug 2023 13:42:31 +0000 (15:42 +0200)
committerMichal Privoznik <mprivozn@redhat.com>
Thu, 3 Aug 2023 14:34:40 +0000 (16:34 +0200)
This is similar to the previous commit, except this is for a
different type (vahControl) and also fixes the case where _ctl is
passed not initialized to vah_error() (via ctl pointer so that's
probably why compilers don't complain).

Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Reviewed-by: Claudio Fontana <cfontana@suse.de>
src/security/virt-aa-helper.c

index 3ee59b32bb2829c056581cd9059f573e09d01b43..da1e4fc3e41be8a9e8823519a0ca9f1626254b8f 100644 (file)
@@ -1433,7 +1433,8 @@ vahParseArgv(vahControl * ctl, int argc, char **argv)
 int
 main(int argc, char **argv)
 {
-    vahControl _ctl, *ctl = &_ctl;
+    vahControl _ctl = { 0 };
+    vahControl *ctl = &_ctl;
     int rc = -1;
     char *profile = NULL;
     char *include_file = NULL;
@@ -1466,8 +1467,6 @@ main(int argc, char **argv)
     else
         progname++;
 
-    memset(ctl, 0, sizeof(vahControl));
-
     if (vahParseArgv(ctl, argc, argv) != 0)
         vah_error(ctl, 1, _("could not parse arguments"));