1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-27 14:04:05 +03:00

s3:pylibsmb: make use of PyBytes_FromStringAndSize() in py_cli_read()

BUG: https://bugzilla.samba.org/show_bug.cgi?id=7113
BUG: https://bugzilla.samba.org/show_bug.cgi?id=11892
BUG: https://bugzilla.samba.org/show_bug.cgi?id=13676

Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Tim Beale <timbeale@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
Stefan Metzmacher 2018-12-07 13:47:40 +01:00
parent aaf7aaa6e2
commit 60148c9ee1

View File

@ -794,7 +794,7 @@ static PyObject *py_cli_read(struct py_cli_state *self, PyObject *args,
PyErr_SetNTSTATUS(status);
return NULL;
}
result = Py_BuildValue("s#", (char *)buf, (int)buflen);
result = PyBytes_FromStringAndSize((const char *)buf, buflen);
TALLOC_FREE(req);
return result;
}