aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPablo Galindo <Pablogsal@gmail.com>2021-01-30 13:54:22 +0000
committerGitHub <noreply@github.com>2021-01-30 22:54:22 +0900
commit86e322f1412be6c5a6c8fa8e73af68b99c42bb18 (patch)
tree491bbecdb80eb01395bdd4eb65bd316a5e403103 /Objects
parentbpo-43047: logging.config formatters documentation update (GH-24358) (diff)
downloadcpython-86e322f1412be6c5a6c8fa8e73af68b99c42bb18.tar.gz
cpython-86e322f1412be6c5a6c8fa8e73af68b99c42bb18.tar.bz2
cpython-86e322f1412be6c5a6c8fa8e73af68b99c42bb18.zip
bpo-40455: Fix gcc10+ warning about writing into a section of offset 0 (GH-24384)
Diffstat (limited to 'Objects')
-rw-r--r--Objects/codeobject.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Objects/codeobject.c b/Objects/codeobject.c
index f7613e8fd2..69cb31c1ab 100644
--- a/Objects/codeobject.c
+++ b/Objects/codeobject.c
@@ -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;