On a Monday in 2020, Erik Skultety wrote:
On Mon, Oct 05, 2020 at 12:22:26AM +0200, Ján Tomko wrote:
Signed-off-by: Ján Tomko <[email protected]>
---
...


     for (i = 0; i < sharedFolders.count; i++) {
         ISharedFolder *sharedFolder = sharedFolders.items[i];
@@ -3798,10 +3789,8 @@ vboxDumpAudio(virDomainDefPtr def, vboxDriverPtr data 
G_GNUC_UNUSED,
             PRUint32 audioController = AudioControllerType_AC97;

             def->nsounds = 1;
-            if (VIR_ALLOC_N(def->sounds, def->nsounds) < 0)
-                return;
-            if (VIR_ALLOC(def->sounds[0]) < 0)
-                return;
+            def->sounds = g_new0(virDomainSoundDefPtr, def->nsounds);

just use 1 for the counter

I can do that.

and drop the nsounds attribute initialization
completely.

def->nsounds needs to be set to 1, otherwise virDomainDefFormat would
not even look at def->sounds.

Jano


Reviewed-by: Erik Skultety <[email protected]>

Attachment: signature.asc
Description: PGP signature

Reply via email to