We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ab9a1a commit 274978bCopy full SHA for 274978b
source/crypto.c
@@ -852,8 +852,8 @@ PyObject *aws_py_ec_decode_signature(PyObject *self, PyObject *args) {
852
return NULL;
853
}
854
855
- PyTuple_SET_ITEM(result, 0, PyBytes_FromStringAndSize((char *)r_cur.ptr, r_cur.len));
856
- PyTuple_SET_ITEM(result, 1, PyBytes_FromStringAndSize((char *)s_cur.ptr, s_cur.len));
+ PyTuple_SetItem(result, 0, PyBytes_FromStringAndSize((char *)r_cur.ptr, r_cur.len));
+ PyTuple_SetItem(result, 1, PyBytes_FromStringAndSize((char *)s_cur.ptr, s_cur.len));
857
858
return result;
859
0 commit comments