qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] [Bug 1441775] Re: possible null pointer dereference in qemu


From: Eric Blake
Subject: [Qemu-devel] [Bug 1441775] Re: possible null pointer dereference in qemuDomainPinEmulator()
Date: Wed, 08 Apr 2015 23:38:37 -0000

** Project changed: qemu => libvirt

-- 
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net/bugs/1441775

Title:
  possible null pointer dereference in qemuDomainPinEmulator()

Status in libvirt virtualization API:
  New

Bug description:
  In src/qemu/qemu_driver.c the qemuDomainPinEmulator() routine
  basically does this

       virDomainObjPtr vm;

       if (!(vm = qemuDomObjFromDomain(dom)))
           goto cleanup;

  cleanup:
       qemuDomObjEndAPI(&vm);

  
  If "vm" is null, then this will crash.

  The bug seems to have been added in commit 540c339a, which removed a null 
pointer check:
  -    if (vm)
  -        virObjectUnlock(vm);
  +    qemuDomObjEndAPI(&vm);

To manage notifications about this bug go to:
https://bugs.launchpad.net/libvirt/+bug/1441775/+subscriptions



reply via email to

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