[libvirt-python PATCH] Add a type check for time in libvirt_virDomainSetTime

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

 



When pass a number or other things to setTime,no error output,but set time to 0.
Add a type check and give a clear error messages:

TypeError: time must be dict

Signed-off-by: Luyao Huang <lhuang@xxxxxxxxxx>
---
 libvirt-override.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/libvirt-override.c b/libvirt-override.c
index 9ba87eb..05552a7 100644
--- a/libvirt-override.c
+++ b/libvirt-override.c
@@ -7795,6 +7795,11 @@ libvirt_virDomainSetTime(PyObject *self ATTRIBUTE_UNUSED, PyObject *args) {
         return NULL;
     domain = (virDomainPtr) PyvirDomain_Get(pyobj_domain);
 
+    if (!PyDict_Check(py_dict)) {
+        PyErr_Format(PyExc_TypeError, "time must be dict");
+        return NULL;
+    }
+
     py_dict_size = PyDict_Size(py_dict);
 
     if (py_dict_size == 2) {
-- 
1.8.3.1

--
libvir-list mailing list
libvir-list@xxxxxxxxxx
https://www.redhat.com/mailman/listinfo/libvir-list




[Index of Archives]     [Virt Tools]     [Libvirt Users]     [Lib OS Info]     [Fedora Users]     [Fedora Desktop]     [Fedora SELinux]     [Big List of Linux Books]     [Yosemite News]     [KDE Users]     [Fedora Tools]