aboutsummaryrefslogtreecommitdiff
path: root/gdb/python/py-mi.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/python/py-mi.c')
-rw-r--r--gdb/python/py-mi.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/gdb/python/py-mi.c b/gdb/python/py-mi.c
index f0e28d9..cf75a18 100644
--- a/gdb/python/py-mi.c
+++ b/gdb/python/py-mi.c
@@ -143,6 +143,13 @@ gdbpy_execute_mi_command (PyObject *self, PyObject *args, PyObject *kw)
if (n_args < 0)
return nullptr;
+ if (n_args == 0)
+ {
+ PyErr_SetString (PyExc_TypeError,
+ _("gdb.execute_mi requires command argument"));
+ return nullptr;
+ }
+
for (Py_ssize_t i = 0; i < n_args; ++i)
{
/* Note this returns a borrowed reference. */