Skip to content

Commit 105a30e

Browse files
committed
Fix segfault in stop
1 parent 66faa42 commit 105a30e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

v4l2capture.cpp

+3-2
Original file line numberDiff line numberDiff line change
@@ -928,8 +928,9 @@ static PyObject *Device_manager_Start(Device_manager *self, PyObject *args)
928928
static PyObject *Device_manager_stop(Device_manager *self, PyObject *args)
929929
{
930930
//Process arguments
931+
931932
const char *devarg = NULL;
932-
if(PyTuple_Size(args) < 1)
933+
if(PyTuple_Size(args) >= 1)
933934
{
934935
PyObject *pydevarg = PyTuple_GetItem(args, 0);
935936
devarg = PyString_AsString(pydevarg);
@@ -1029,7 +1030,7 @@ static PyMethodDef Device_manager_methods[] = {
10291030
{"start", (PyCFunction)Device_manager_Start, METH_VARARGS,
10301031
"start(dev = '\\dev\\video0', reqSize=(640, 480), reqFps = 30, fmt = 'MJPEG\', buffer_count = 10)\n\n"
10311032
"Start video capture."},
1032-
{"stop", (PyCFunction)Device_manager_stop, METH_NOARGS,
1033+
{"stop", (PyCFunction)Device_manager_stop, METH_VARARGS,
10331034
"stop()\n\n"
10341035
"Stop video capture."},
10351036
{NULL}

0 commit comments

Comments
 (0)