summaryrefslogtreecommitdiff
path: root/util.c
diff options
context:
space:
mode:
authorBert Vermeulen <bert@biot.com>2013-12-11 23:41:02 +0100
committerBert Vermeulen <bert@biot.com>2013-12-11 23:41:02 +0100
commit62a2b15ce3fe6af6867c30cfc9c14c01d201a898 (patch)
treea49a13a6d48342daeaa66684fd826125ac67d2af /util.c
parent932606db3cdb14518dac55c67f4ecc8471fb6a33 (diff)
downloadlibsigrokdecode-62a2b15ce3fe6af6867c30cfc9c14c01d201a898.tar.gz
libsigrokdecode-62a2b15ce3fe6af6867c30cfc9c14c01d201a898.zip
Easier access to sequences of strings, not just lists.
Diffstat (limited to 'util.c')
-rw-r--r--util.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/util.c b/util.c
index 74d56c3..1efaa84 100644
--- a/util.c
+++ b/util.c
@@ -174,20 +174,20 @@ err_out:
*
* @private
*/
-SRD_PRIV int py_strlist_to_char(const PyObject *py_strlist, char ***outstr)
+SRD_PRIV int py_strseq_to_char(const PyObject *py_strseq, char ***outstr)
{
PyObject *py_str;
int list_len, i;
char **out, *str;
- list_len = PyList_Size((PyObject *)py_strlist);
+ list_len = PySequence_Size((PyObject *)py_strseq);
if (!(out = g_try_malloc(sizeof(char *) * (list_len + 1)))) {
srd_err("Failed to g_malloc() 'out'.");
return SRD_ERR_MALLOC;
}
for (i = 0; i < list_len; i++) {
if (!(py_str = PyUnicode_AsEncodedString(
- PyList_GetItem((PyObject *)py_strlist, i), "utf-8", NULL)))
+ PySequence_GetItem((PyObject *)py_strseq, i), "utf-8", NULL)))
return SRD_ERR_PYTHON;
if (!(str = PyBytes_AS_STRING(py_str)))
return SRD_ERR_PYTHON;