1
0
mirror of https://github.com/Tha14/toxic.git synced 2025-07-02 22:06:44 +02:00

Fix typedef enums and potential uninitialised value.

This commit is contained in:
iphydf
2018-01-20 18:30:35 +00:00
parent 846bc4613e
commit b9f9546e2b
8 changed files with 14 additions and 10 deletions

View File

@ -67,7 +67,7 @@ static PyObject *python_api_get_nick(PyObject *self, PyObject *args)
static PyObject *python_api_get_status(PyObject *self, PyObject *args)
{
PyObject *ret;
PyObject *ret = NULL;
if (!PyArg_ParseTuple(args, ""))
return NULL;