mirror of
https://github.com/python/cpython.git
synced 2025-08-03 08:34:29 +00:00
bpo-40455: Fix gcc10+ warning about writing into a section of offset 0 (GH-24384)
This commit is contained in:
parent
62437a2fa9
commit
86e322f141
2 changed files with 4 additions and 5 deletions
|
@ -408,8 +408,8 @@ emit_pair(PyObject **bytes, int *offset, int a, int b)
|
|||
if (_PyBytes_Resize(bytes, len * 2) < 0)
|
||||
return 0;
|
||||
}
|
||||
unsigned char *lnotab = (unsigned char *)
|
||||
PyBytes_AS_STRING(*bytes) + *offset;
|
||||
unsigned char *lnotab = (unsigned char *) PyBytes_AS_STRING(*bytes);
|
||||
lnotab += *offset;
|
||||
*lnotab++ = a;
|
||||
*lnotab++ = b;
|
||||
*offset += 2;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue