Fix error handling for get_rspec
authorSteve Muir <smuir@cs.princeton.edu>
Fri, 2 Dec 2005 19:18:57 +0000 (19:18 +0000)
committerSteve Muir <smuir@cs.princeton.edu>
Fri, 2 Dec 2005 19:18:57 +0000 (19:18 +0000)
python/vserverimpl.c

index 7a90cf0..00c8980 100644 (file)
@@ -54,11 +54,17 @@ get_rspec(PyObject *resources, rspec_t *rspec)
       PyErr_SetString(PyExc_TypeError, "invalid rspec");
       return -1;
     }
-  if ((cpu_share = PyMapping_GetItemString(resources, "nm_cpu_share")) &&
-      (cpu_share = PyNumber_Int(cpu_share)))
-    rspec->cpu_share = PyInt_AsLong(cpu_share);
+  if ((cpu_share = PyMapping_GetItemString(resources, "nm_cpu_share")))
+    {
+      if (PyInt_Check(cpu_share))
+       {
+         rspec->cpu_share = PyInt_AS_LONG(cpu_share);
+         return 0;
+       }
+      PyErr_SetString(PyExc_TypeError, "nm_cpu_share not an integer");
+    }
 
-  return 0;
+  return -1;
 }
 
 /*