Tim Peters added the comment:

Python's debug-mode memory allocators add some "magic values" before and after 
each allocated chunk of memory, and check them when the chunk is freed to make 
sure nobody overwrote them.  In this case, someone did overwrite the byte at 
p-5, where p is the address of the block originally returned to the requesting 
program code.

It's also suspicious that it says this block was originally allocated by the 
8,155,854,715th call to a debug allocation routine:  is it plausible that you 
(for example) allocated over 8 billion objects?  This "serial number" is also 
stored in bytes adjacent to (and after) the allocated block, so is also 
vulnerable to out-of-bounds stores by rogue code.

So we have out-of-bounds stores here both before and after the requested 
memory.  Sorry, but it's unlikely core Python is doing this - such errors are 
usually due to rogue extension modules.

----------
nosy: +tim.peters

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue18843>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to