ctypes: cauclate bitfield size in a single arithmetic expression

Signed-off-by: Filipe Laíns <lains@archlinux.org>
This commit is contained in:
Filipe Laíns 2020-05-27 18:52:30 +01:00
parent a0de97dd90
commit 06151bcab5
No known key found for this signature in database
GPG Key ID: F893C674816AA95D
1 changed files with 2 additions and 5 deletions

View File

@ -74,9 +74,7 @@ PyCField_FromDesc(PyObject *desc, Py_ssize_t index,
#ifndef MS_WIN32
if (pack && bitsize) { /* packed bitfield */
size = 1;
while(size * 8 < bitsize)
size += 1;
size = (bitsize - 1) / 8 + 1;
} else
#endif
size = dict->size;
@ -182,8 +180,7 @@ PyCField_FromDesc(PyObject *desc, Py_ssize_t index,
case EXPAND_BITFIELD:
if (pack)
while(size * 8 < (*pbitofs + bitsize))
size += 1;
size = (*pbitofs + bitsize - 1) / 8 + 1;
*poffset += size - *pfield_size/8;
*psize += size - *pfield_size/8;