Staging
v0.8.1
https://github.com/python/cpython
Revision 35503c9c1444ef4ee11ec403d7848f0240cacc9e authored by Antoine Pitrou on 20 August 2012, 17:31:52 UTC, committed by Antoine Pitrou on 20 August 2012, 17:31:52 UTC
2 parent s 66d1eb2 + 75506e8
Raw File
Tip revision: 35503c9c1444ef4ee11ec403d7848f0240cacc9e authored by Antoine Pitrou on 20 August 2012, 17:31:52 UTC
Issue #15726: Fix incorrect bounds checking in PyState_FindModule.
Tip revision: 35503c9
hashlib.h
/* Common code for use by all hashlib related modules. */

/*
 * Given a PyObject* obj, fill in the Py_buffer* viewp with the result
 * of PyObject_GetBuffer.  Sets and exception and issues a return NULL
 * on any errors.
 */
#define GET_BUFFER_VIEW_OR_ERROUT(obj, viewp) do { \
        if (PyUnicode_Check((obj))) { \
            PyErr_SetString(PyExc_TypeError, \
                            "Unicode-objects must be encoded before hashing");\
            return NULL; \
        } \
        if (!PyObject_CheckBuffer((obj))) { \
            PyErr_SetString(PyExc_TypeError, \
                            "object supporting the buffer API required"); \
            return NULL; \
        } \
        if (PyObject_GetBuffer((obj), (viewp), PyBUF_SIMPLE) == -1) { \
            return NULL; \
        } \
        if ((viewp)->ndim > 1) { \
            PyErr_SetString(PyExc_BufferError, \
                            "Buffer must be single dimension"); \
            PyBuffer_Release((viewp)); \
            return NULL; \
        } \
    } while(0);
back to top