Commit e81c9f6d authored by Thomas Heller's avatar Thomas Heller

[ 1715718 ] x64 clean compile patch for _ctypes, by Kristj?n Valur

with small modifications.
parent da587ab4
...@@ -789,7 +789,7 @@ static int ...@@ -789,7 +789,7 @@ static int
CharArray_set_value(CDataObject *self, PyObject *value) CharArray_set_value(CDataObject *self, PyObject *value)
{ {
char *ptr; char *ptr;
int size; Py_ssize_t size;
if (PyUnicode_Check(value)) { if (PyUnicode_Check(value)) {
value = PyUnicode_AsEncodedString(value, value = PyUnicode_AsEncodedString(value,
...@@ -844,7 +844,7 @@ WCharArray_get_value(CDataObject *self) ...@@ -844,7 +844,7 @@ WCharArray_get_value(CDataObject *self)
static int static int
WCharArray_set_value(CDataObject *self, PyObject *value) WCharArray_set_value(CDataObject *self, PyObject *value)
{ {
int result = 0; Py_ssize_t result = 0;
if (PyString_Check(value)) { if (PyString_Check(value)) {
value = PyUnicode_FromEncodedObject(value, value = PyUnicode_FromEncodedObject(value,
...@@ -868,14 +868,12 @@ WCharArray_set_value(CDataObject *self, PyObject *value) ...@@ -868,14 +868,12 @@ WCharArray_set_value(CDataObject *self, PyObject *value)
result = PyUnicode_AsWideChar((PyUnicodeObject *)value, result = PyUnicode_AsWideChar((PyUnicodeObject *)value,
(wchar_t *)self->b_ptr, (wchar_t *)self->b_ptr,
self->b_size/sizeof(wchar_t)); self->b_size/sizeof(wchar_t));
if (result >= 0 && (unsigned)result < self->b_size/sizeof(wchar_t)) if (result >= 0 && (size_t)result < self->b_size/sizeof(wchar_t))
((wchar_t *)self->b_ptr)[result] = (wchar_t)0; ((wchar_t *)self->b_ptr)[result] = (wchar_t)0;
if (result > 0)
result = 0;
done: done:
Py_DECREF(value); Py_DECREF(value);
return result; return result >= 0 ? 0 : -1;
} }
static PyGetSetDef WCharArray_getsets[] = { static PyGetSetDef WCharArray_getsets[] = {
...@@ -966,7 +964,7 @@ ArrayType_new(PyTypeObject *type, PyObject *args, PyObject *kwds) ...@@ -966,7 +964,7 @@ ArrayType_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
PyObject *typedict; PyObject *typedict;
int length; int length;
int itemsize, itemalign; Py_ssize_t itemsize, itemalign;
typedict = PyTuple_GetItem(args, 2); typedict = PyTuple_GetItem(args, 2);
if (!typedict) if (!typedict)
...@@ -1737,8 +1735,8 @@ static PyObject * ...@@ -1737,8 +1735,8 @@ static PyObject *
converters_from_argtypes(PyObject *ob) converters_from_argtypes(PyObject *ob)
{ {
PyObject *converters; PyObject *converters;
int i; Py_ssize_t i;
int nArgs; Py_ssize_t nArgs;
ob = PySequence_Tuple(ob); /* new reference */ ob = PySequence_Tuple(ob); /* new reference */
if (!ob) { if (!ob) {
...@@ -2591,18 +2589,18 @@ static PyGetSetDef CFuncPtr_getsets[] = { ...@@ -2591,18 +2589,18 @@ static PyGetSetDef CFuncPtr_getsets[] = {
#ifdef MS_WIN32 #ifdef MS_WIN32
static PPROC FindAddress(void *handle, char *name, PyObject *type) static PPROC FindAddress(void *handle, char *name, PyObject *type)
{ {
#ifdef MS_WIN64
/* win64 has no stdcall calling conv, so it should
also not have the name mangling of it.
*/
return (PPROC)GetProcAddress(handle, name);
#else
PPROC address; PPROC address;
char *mangled_name; char *mangled_name;
int i; int i;
StgDictObject *dict; StgDictObject *dict;
address = (PPROC)GetProcAddress(handle, name); address = (PPROC)GetProcAddress(handle, name);
#ifdef _WIN64
/* win64 has no stdcall calling conv, so it should
also not have the name mangling of it.
*/
return address;
#else
if (address) if (address)
return address; return address;
if (((size_t)name & ~0xFFFF) == 0) { if (((size_t)name & ~0xFFFF) == 0) {
...@@ -2634,7 +2632,7 @@ static PPROC FindAddress(void *handle, char *name, PyObject *type) ...@@ -2634,7 +2632,7 @@ static PPROC FindAddress(void *handle, char *name, PyObject *type)
/* Return 1 if usable, 0 else and exception set. */ /* Return 1 if usable, 0 else and exception set. */
static int static int
_check_outarg_type(PyObject *arg, int index) _check_outarg_type(PyObject *arg, Py_ssize_t index)
{ {
StgDictObject *dict; StgDictObject *dict;
...@@ -2655,7 +2653,7 @@ _check_outarg_type(PyObject *arg, int index) ...@@ -2655,7 +2653,7 @@ _check_outarg_type(PyObject *arg, int index)
PyErr_Format(PyExc_TypeError, PyErr_Format(PyExc_TypeError,
"'out' parameter %d must be a pointer type, not %s", "'out' parameter %d must be a pointer type, not %s",
index, Py_SAFE_DOWNCAST(index, Py_ssize_t, int),
PyType_Check(arg) ? PyType_Check(arg) ?
((PyTypeObject *)arg)->tp_name : ((PyTypeObject *)arg)->tp_name :
arg->ob_type->tp_name); arg->ob_type->tp_name);
...@@ -2666,7 +2664,7 @@ _check_outarg_type(PyObject *arg, int index) ...@@ -2666,7 +2664,7 @@ _check_outarg_type(PyObject *arg, int index)
static int static int
_validate_paramflags(PyTypeObject *type, PyObject *paramflags) _validate_paramflags(PyTypeObject *type, PyObject *paramflags)
{ {
int i, len; Py_ssize_t i, len;
StgDictObject *dict; StgDictObject *dict;
PyObject *argtypes; PyObject *argtypes;
...@@ -3051,12 +3049,12 @@ _build_callargs(CFuncPtrObject *self, PyObject *argtypes, ...@@ -3051,12 +3049,12 @@ _build_callargs(CFuncPtrObject *self, PyObject *argtypes,
PyObject *paramflags = self->paramflags; PyObject *paramflags = self->paramflags;
PyObject *callargs; PyObject *callargs;
StgDictObject *dict; StgDictObject *dict;
int i, len; Py_ssize_t i, len;
int inargs_index = 0; int inargs_index = 0;
/* It's a little bit difficult to determine how many arguments the /* It's a little bit difficult to determine how many arguments the
function call requires/accepts. For simplicity, we count the consumed function call requires/accepts. For simplicity, we count the consumed
args and compare this to the number of supplied args. */ args and compare this to the number of supplied args. */
int actual_args; Py_ssize_t actual_args;
*poutmask = 0; *poutmask = 0;
*pinoutmask = 0; *pinoutmask = 0;
...@@ -3093,7 +3091,7 @@ _build_callargs(CFuncPtrObject *self, PyObject *argtypes, ...@@ -3093,7 +3091,7 @@ _build_callargs(CFuncPtrObject *self, PyObject *argtypes,
/* This way seems to be ~2 us faster than the PyArg_ParseTuple /* This way seems to be ~2 us faster than the PyArg_ParseTuple
calls below. */ calls below. */
/* We HAVE already checked that the tuple can be parsed with "i|zO", so... */ /* We HAVE already checked that the tuple can be parsed with "i|zO", so... */
int tsize = PyTuple_GET_SIZE(item); Py_ssize_t tsize = PyTuple_GET_SIZE(item);
flag = PyInt_AS_LONG(PyTuple_GET_ITEM(item, 0)); flag = PyInt_AS_LONG(PyTuple_GET_ITEM(item, 0));
name = tsize > 1 ? PyString_AS_STRING(PyTuple_GET_ITEM(item, 1)) : NULL; name = tsize > 1 ? PyString_AS_STRING(PyTuple_GET_ITEM(item, 1)) : NULL;
defval = tsize > 2 ? PyTuple_GET_ITEM(item, 2) : NULL; defval = tsize > 2 ? PyTuple_GET_ITEM(item, 2) : NULL;
...@@ -3339,8 +3337,10 @@ CFuncPtr_call(CFuncPtrObject *self, PyObject *inargs, PyObject *kwds) ...@@ -3339,8 +3337,10 @@ CFuncPtr_call(CFuncPtrObject *self, PyObject *inargs, PyObject *kwds)
return NULL; return NULL;
if (converters) { if (converters) {
int required = PyTuple_GET_SIZE(converters); int required = Py_SAFE_DOWNCAST(PyTuple_GET_SIZE(converters),
int actual = PyTuple_GET_SIZE(callargs); Py_ssize_t, int);
int actual = Py_SAFE_DOWNCAST(PyTuple_GET_SIZE(callargs),
Py_ssize_t, int);
if ((dict->flags & FUNCFLAG_CDECL) == FUNCFLAG_CDECL) { if ((dict->flags & FUNCFLAG_CDECL) == FUNCFLAG_CDECL) {
/* For cdecl functions, we allow more actual arguments /* For cdecl functions, we allow more actual arguments
...@@ -3679,8 +3679,8 @@ static PyTypeObject Union_Type = { ...@@ -3679,8 +3679,8 @@ static PyTypeObject Union_Type = {
static int static int
Array_init(CDataObject *self, PyObject *args, PyObject *kw) Array_init(CDataObject *self, PyObject *args, PyObject *kw)
{ {
int i; Py_ssize_t i;
int n; Py_ssize_t n;
if (!PyTuple_Check(args)) { if (!PyTuple_Check(args)) {
PyErr_SetString(PyExc_TypeError, PyErr_SetString(PyExc_TypeError,
...@@ -3701,7 +3701,7 @@ static PyObject * ...@@ -3701,7 +3701,7 @@ static PyObject *
Array_item(PyObject *_self, Py_ssize_t index) Array_item(PyObject *_self, Py_ssize_t index)
{ {
CDataObject *self = (CDataObject *)_self; CDataObject *self = (CDataObject *)_self;
int offset, size; Py_ssize_t offset, size;
StgDictObject *stgdict; StgDictObject *stgdict;
...@@ -3773,7 +3773,7 @@ static int ...@@ -3773,7 +3773,7 @@ static int
Array_ass_item(PyObject *_self, Py_ssize_t index, PyObject *value) Array_ass_item(PyObject *_self, Py_ssize_t index, PyObject *value)
{ {
CDataObject *self = (CDataObject *)_self; CDataObject *self = (CDataObject *)_self;
int size, offset; Py_ssize_t size, offset;
StgDictObject *stgdict; StgDictObject *stgdict;
char *ptr; char *ptr;
...@@ -3802,7 +3802,7 @@ static int ...@@ -3802,7 +3802,7 @@ static int
Array_ass_slice(PyObject *_self, Py_ssize_t ilow, Py_ssize_t ihigh, PyObject *value) Array_ass_slice(PyObject *_self, Py_ssize_t ilow, Py_ssize_t ihigh, PyObject *value)
{ {
CDataObject *self = (CDataObject *)_self; CDataObject *self = (CDataObject *)_self;
int i, len; Py_ssize_t i, len;
if (value == NULL) { if (value == NULL) {
PyErr_SetString(PyExc_TypeError, PyErr_SetString(PyExc_TypeError,
...@@ -4164,7 +4164,7 @@ static PyObject * ...@@ -4164,7 +4164,7 @@ static PyObject *
Pointer_item(PyObject *_self, Py_ssize_t index) Pointer_item(PyObject *_self, Py_ssize_t index)
{ {
CDataObject *self = (CDataObject *)_self; CDataObject *self = (CDataObject *)_self;
int size; Py_ssize_t size;
Py_ssize_t offset; Py_ssize_t offset;
StgDictObject *stgdict, *itemdict; StgDictObject *stgdict, *itemdict;
PyObject *proto; PyObject *proto;
...@@ -4195,7 +4195,7 @@ static int ...@@ -4195,7 +4195,7 @@ static int
Pointer_ass_item(PyObject *_self, Py_ssize_t index, PyObject *value) Pointer_ass_item(PyObject *_self, Py_ssize_t index, PyObject *value)
{ {
CDataObject *self = (CDataObject *)_self; CDataObject *self = (CDataObject *)_self;
int size; Py_ssize_t size;
Py_ssize_t offset; Py_ssize_t offset;
StgDictObject *stgdict, *itemdict; StgDictObject *stgdict, *itemdict;
PyObject *proto; PyObject *proto;
...@@ -4629,9 +4629,10 @@ cast(void *ptr, PyObject *src, PyObject *ctype) ...@@ -4629,9 +4629,10 @@ cast(void *ptr, PyObject *src, PyObject *ctype)
static PyObject * static PyObject *
wstring_at(const wchar_t *ptr, int size) wstring_at(const wchar_t *ptr, int size)
{ {
if (size == -1) Py_ssize_t ssize = size;
size = wcslen(ptr); if (ssize == -1)
return PyUnicode_FromWideChar(ptr, size); ssize = wcslen(ptr);
return PyUnicode_FromWideChar(ptr, ssize);
} }
#endif #endif
...@@ -4831,7 +4832,7 @@ PyObject *My_PyUnicode_FromWideChar(register const wchar_t *w, ...@@ -4831,7 +4832,7 @@ PyObject *My_PyUnicode_FromWideChar(register const wchar_t *w,
return (PyObject *)unicode; return (PyObject *)unicode;
} }
int My_PyUnicode_AsWideChar(PyUnicodeObject *unicode, Py_ssize_t My_PyUnicode_AsWideChar(PyUnicodeObject *unicode,
register wchar_t *w, register wchar_t *w,
Py_ssize_t size) Py_ssize_t size)
{ {
......
...@@ -123,10 +123,10 @@ static void _CallPythonObject(void *mem, ...@@ -123,10 +123,10 @@ static void _CallPythonObject(void *mem,
PyObject *converters, PyObject *converters,
void **pArgs) void **pArgs)
{ {
int i; Py_ssize_t i;
PyObject *result; PyObject *result;
PyObject *arglist = NULL; PyObject *arglist = NULL;
int nArgs; Py_ssize_t nArgs;
#ifdef WITH_THREAD #ifdef WITH_THREAD
PyGILState_STATE state = PyGILState_Ensure(); PyGILState_STATE state = PyGILState_Ensure();
#endif #endif
...@@ -264,7 +264,7 @@ ffi_info *AllocFunctionCallback(PyObject *callable, ...@@ -264,7 +264,7 @@ ffi_info *AllocFunctionCallback(PyObject *callable,
{ {
int result; int result;
ffi_info *p; ffi_info *p;
int nArgs, i; Py_ssize_t nArgs, i;
ffi_abi cc; ffi_abi cc;
nArgs = PySequence_Size(converters); nArgs = PySequence_Size(converters);
...@@ -307,7 +307,8 @@ ffi_info *AllocFunctionCallback(PyObject *callable, ...@@ -307,7 +307,8 @@ ffi_info *AllocFunctionCallback(PyObject *callable,
if (is_cdecl == 0) if (is_cdecl == 0)
cc = FFI_STDCALL; cc = FFI_STDCALL;
#endif #endif
result = ffi_prep_cif(&p->cif, cc, nArgs, result = ffi_prep_cif(&p->cif, cc,
Py_SAFE_DOWNCAST(nArgs, Py_ssize_t, int),
GetType(restype), GetType(restype),
&p->atypes[0]); &p->atypes[0]);
if (result != FFI_OK) { if (result != FFI_OK) {
......
...@@ -361,13 +361,13 @@ PyCArg_repr(PyCArgObject *self) ...@@ -361,13 +361,13 @@ PyCArg_repr(PyCArgObject *self)
case 'z': case 'z':
case 'Z': case 'Z':
case 'P': case 'P':
sprintf(buffer, "<cparam '%c' (%08lx)>", sprintf(buffer, "<cparam '%c' (%p)>",
self->tag, (long)self->value.p); self->tag, self->value.p);
break; break;
default: default:
sprintf(buffer, "<cparam '%c' at %08lx>", sprintf(buffer, "<cparam '%c' at %p>",
self->tag, (long)self); self->tag, self);
break; break;
} }
return PyString_FromString(buffer); return PyString_FromString(buffer);
...@@ -464,7 +464,7 @@ struct argument { ...@@ -464,7 +464,7 @@ struct argument {
/* /*
* Convert a single Python object into a PyCArgObject and return it. * Convert a single Python object into a PyCArgObject and return it.
*/ */
static int ConvParam(PyObject *obj, int index, struct argument *pa) static int ConvParam(PyObject *obj, Py_ssize_t index, struct argument *pa)
{ {
StgDictObject *dict; StgDictObject *dict;
pa->keep = NULL; /* so we cannot forget it later */ pa->keep = NULL; /* so we cannot forget it later */
...@@ -572,7 +572,8 @@ static int ConvParam(PyObject *obj, int index, struct argument *pa) ...@@ -572,7 +572,8 @@ static int ConvParam(PyObject *obj, int index, struct argument *pa)
return result; return result;
} }
PyErr_Format(PyExc_TypeError, PyErr_Format(PyExc_TypeError,
"Don't know how to convert parameter %d", index); "Don't know how to convert parameter %d",
Py_SAFE_DOWNCAST(index, Py_ssize_t, int));
return -1; return -1;
} }
} }
...@@ -912,7 +913,7 @@ PyObject *_CallProc(PPROC pProc, ...@@ -912,7 +913,7 @@ PyObject *_CallProc(PPROC pProc,
PyObject *restype, PyObject *restype,
PyObject *checker) PyObject *checker)
{ {
int i, n, argcount, argtype_count; Py_ssize_t i, n, argcount, argtype_count;
void *resbuf; void *resbuf;
struct argument *args, *pa; struct argument *args, *pa;
ffi_type **atypes; ffi_type **atypes;
...@@ -1002,7 +1003,10 @@ PyObject *_CallProc(PPROC pProc, ...@@ -1002,7 +1003,10 @@ PyObject *_CallProc(PPROC pProc,
} }
if (-1 == _call_function_pointer(flags, pProc, avalues, atypes, if (-1 == _call_function_pointer(flags, pProc, avalues, atypes,
rtype, resbuf, argcount)) rtype, resbuf,
Py_SAFE_DOWNCAST(argcount,
Py_ssize_t,
int)))
goto cleanup; goto cleanup;
#ifdef WORDS_BIGENDIAN #ifdef WORDS_BIGENDIAN
...@@ -1358,10 +1362,10 @@ sizeof_func(PyObject *self, PyObject *obj) ...@@ -1358,10 +1362,10 @@ sizeof_func(PyObject *self, PyObject *obj)
dict = PyType_stgdict(obj); dict = PyType_stgdict(obj);
if (dict) if (dict)
return PyInt_FromLong(dict->size); return PyInt_FromSsize_t(dict->size);
if (CDataObject_Check(obj)) if (CDataObject_Check(obj))
return PyInt_FromLong(((CDataObject *)obj)->b_size); return PyInt_FromSsize_t(((CDataObject *)obj)->b_size);
PyErr_SetString(PyExc_TypeError, PyErr_SetString(PyExc_TypeError,
"this type has no size"); "this type has no size");
return NULL; return NULL;
...@@ -1379,11 +1383,11 @@ align_func(PyObject *self, PyObject *obj) ...@@ -1379,11 +1383,11 @@ align_func(PyObject *self, PyObject *obj)
dict = PyType_stgdict(obj); dict = PyType_stgdict(obj);
if (dict) if (dict)
return PyInt_FromLong(dict->align); return PyInt_FromSsize_t(dict->align);
dict = PyObject_stgdict(obj); dict = PyObject_stgdict(obj);
if (dict) if (dict)
return PyInt_FromLong(dict->align); return PyInt_FromSsize_t(dict->align);
PyErr_SetString(PyExc_TypeError, PyErr_SetString(PyExc_TypeError,
"no alignment info"); "no alignment info");
......
This diff is collapsed.
...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
#if (PY_VERSION_HEX < 0x02050000) #if (PY_VERSION_HEX < 0x02050000)
typedef int Py_ssize_t; typedef int Py_ssize_t;
#define PyInt_FromSsize_t PyInt_FromLong
#endif #endif
#ifndef MS_WIN32 #ifndef MS_WIN32
...@@ -31,8 +32,8 @@ typedef int Py_ssize_t; ...@@ -31,8 +32,8 @@ typedef int Py_ssize_t;
typedef struct tagPyCArgObject PyCArgObject; typedef struct tagPyCArgObject PyCArgObject;
typedef struct tagCDataObject CDataObject; typedef struct tagCDataObject CDataObject;
typedef PyObject *(* GETFUNC)(void *, unsigned size); typedef PyObject *(* GETFUNC)(void *, Py_ssize_t size);
typedef PyObject *(* SETFUNC)(void *, PyObject *value, unsigned size); typedef PyObject *(* SETFUNC)(void *, PyObject *value, Py_ssize_t size);
typedef PyCArgObject *(* PARAMFUNC)(CDataObject *obj); typedef PyCArgObject *(* PARAMFUNC)(CDataObject *obj);
/* A default buffer in CDataObject, which can be used for small C types. If /* A default buffer in CDataObject, which can be used for small C types. If
...@@ -137,9 +138,9 @@ extern struct fielddesc *getentry(char *fmt); ...@@ -137,9 +138,9 @@ extern struct fielddesc *getentry(char *fmt);
extern PyObject * extern PyObject *
CField_FromDesc(PyObject *desc, int index, CField_FromDesc(PyObject *desc, Py_ssize_t index,
int *pfield_size, int bitsize, int *pbitofs, Py_ssize_t *pfield_size, int bitsize, int *pbitofs,
int *psize, int *poffset, int *palign, Py_ssize_t *psize, Py_ssize_t *poffset, Py_ssize_t *palign,
int pack, int is_big_endian); int pack, int is_big_endian);
extern PyObject *CData_AtAddress(PyObject *type, void *buf); extern PyObject *CData_AtAddress(PyObject *type, void *buf);
...@@ -310,7 +311,7 @@ struct tagPyCArgObject { ...@@ -310,7 +311,7 @@ struct tagPyCArgObject {
void *p; void *p;
} value; } value;
PyObject *obj; PyObject *obj;
int size; /* for the 'V' tag */ Py_ssize_t size; /* for the 'V' tag */
}; };
extern PyTypeObject PyCArg_Type; extern PyTypeObject PyCArg_Type;
...@@ -387,7 +388,7 @@ extern char *conversion_mode_errors; ...@@ -387,7 +388,7 @@ extern char *conversion_mode_errors;
# define PyUnicode_AsWideChar My_PyUnicode_AsWideChar # define PyUnicode_AsWideChar My_PyUnicode_AsWideChar
extern PyObject *My_PyUnicode_FromWideChar(const wchar_t *, Py_ssize_t); extern PyObject *My_PyUnicode_FromWideChar(const wchar_t *, Py_ssize_t);
extern int My_PyUnicode_AsWideChar(PyUnicodeObject *, wchar_t *, Py_ssize_t); extern Py_ssize_t My_PyUnicode_AsWideChar(PyUnicodeObject *, wchar_t *, Py_ssize_t);
#endif #endif
......
...@@ -50,7 +50,7 @@ int ...@@ -50,7 +50,7 @@ int
StgDict_clone(StgDictObject *dst, StgDictObject *src) StgDict_clone(StgDictObject *dst, StgDictObject *src)
{ {
char *d, *s; char *d, *s;
int size; Py_ssize_t size;
StgDict_clear(dst); StgDict_clear(dst);
PyMem_Free(dst->ffi_type_pointer.elements); PyMem_Free(dst->ffi_type_pointer.elements);
...@@ -289,13 +289,13 @@ int ...@@ -289,13 +289,13 @@ int
StructUnionType_update_stgdict(PyObject *type, PyObject *fields, int isStruct) StructUnionType_update_stgdict(PyObject *type, PyObject *fields, int isStruct)
{ {
StgDictObject *stgdict, *basedict; StgDictObject *stgdict, *basedict;
int len, offset, size, align, i; Py_ssize_t len, offset, size, align, i;
int union_size, total_align; Py_ssize_t union_size, total_align;
int field_size = 0; Py_ssize_t field_size = 0;
int bitofs; int bitofs;
PyObject *isPacked; PyObject *isPacked;
int pack = 0; int pack = 0;
int ffi_ofs; Py_ssize_t ffi_ofs;
int big_endian; int big_endian;
/* HACK Alert: I cannot be bothered to fix ctypes.com, so there has to /* HACK Alert: I cannot be bothered to fix ctypes.com, so there has to
...@@ -484,7 +484,9 @@ StructUnionType_update_stgdict(PyObject *type, PyObject *fields, int isStruct) ...@@ -484,7 +484,9 @@ StructUnionType_update_stgdict(PyObject *type, PyObject *fields, int isStruct)
/* Adjust the size according to the alignment requirements */ /* Adjust the size according to the alignment requirements */
size = ((size + total_align - 1) / total_align) * total_align; size = ((size + total_align - 1) / total_align) * total_align;
stgdict->ffi_type_pointer.alignment = total_align; stgdict->ffi_type_pointer.alignment = Py_SAFE_DOWNCAST(total_align,
Py_ssize_t,
unsigned short);
stgdict->ffi_type_pointer.size = size; stgdict->ffi_type_pointer.size = size;
stgdict->size = size; stgdict->size = size;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment