gh-99706: unicodeobject: Fix padding in PyASCIIObject.state (GH-99707)

This commit is contained in:
David Hewitt 2022-11-24 08:21:59 +00:00 committed by GitHub
parent c24397a108
commit b4d54a332e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -135,7 +135,7 @@ typedef struct {
unsigned int ascii:1;
/* Padding to ensure that PyUnicode_DATA() is always aligned to
4 bytes (see issue #19537 on m68k). */
unsigned int :25;
unsigned int :26;
} state;
} PyASCIIObject;