1
0
mirror of https://gitlab.com/libvirt/libvirt-python.git synced 2025-08-01 00:21:59 +03:00

Fri Jun 15 08:53:00 BST 2007 Richard W.M. Jones <rjones@redhat.com>

* src/internal.h, src/virsh.c: Replace _N with N_ so that
          Solaris builds work (Mark Johnson).
        * src/virsh.c: Add a couple of missing error messages (Mark
          Johnson).
        * python/types.c: Fix NULL pointer deref on DEBUG build
          (Mark Johnson).
        * src/virsh.c: Spelling fix (Mark Johnson).
This commit is contained in:
Richard W.M. Jones
2007-06-15 08:18:55 +00:00
parent b599903eb2
commit 80ed1b408a

18
types.c
View File

@ -62,13 +62,13 @@ libvirt_charPtrWrap(char *str)
{
PyObject *ret;
#ifdef DEBUG
printf("libvirt_xmlcharPtrWrap: str = %s\n", str);
#endif
if (str == NULL) {
Py_INCREF(Py_None);
return (Py_None);
}
#ifdef DEBUG
printf("libvirt_xmlcharPtrWrap: str = %s\n", str);
#endif
ret = PyString_FromString(str);
free(str);
return (ret);
@ -79,13 +79,13 @@ libvirt_constcharPtrWrap(const char *str)
{
PyObject *ret;
#ifdef DEBUG
printf("libvirt_xmlcharPtrWrap: str = %s\n", str);
#endif
if (str == NULL) {
Py_INCREF(Py_None);
return (Py_None);
}
#ifdef DEBUG
printf("libvirt_xmlcharPtrWrap: str = %s\n", str);
#endif
ret = PyString_FromString(str);
return (ret);
}
@ -95,13 +95,13 @@ libvirt_charPtrConstWrap(const char *str)
{
PyObject *ret;
#ifdef DEBUG
printf("libvirt_xmlcharPtrWrap: str = %s\n", str);
#endif
if (str == NULL) {
Py_INCREF(Py_None);
return (Py_None);
}
#ifdef DEBUG
printf("libvirt_xmlcharPtrWrap: str = %s\n", str);
#endif
ret = PyString_FromString(str);
return (ret);
}