This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author cassou
Recipients cassou, lemburg, tim.peters, vstinner
Date 2012-05-29.12:29:21
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1338294563.1.0.472607755254.issue14951@psf.upfronthosting.co.za>
In-reply-to
Content
Hi,

I've just executed a dynamic program analyzer (kvasir frontend for daikon) on the python runtime with an hello world python input. I got a lot of errors (796 errors from 61 contexts), potentially showing bugs in cpython. The following presents one such errors. I can report more if the following is useful to anyone. 

    Invalid read of size 4
       at 0x459897: PyObject_Free (obmalloc.c:969)
       by 0x5133E5: PyGrammar_RemoveAccelerators (acceler.c:47)
       by 0x4DCD92: Py_Finalize (pythonrun.c:539)
       by 0x417946: Py_Main (main.c:664)
       by 0x416703: main (python.c:23)
     Address 0x6108020 is 256 bytes inside a block of size 676 free'd
       at 0x4C24242: free (vg_replace_malloc.c:366)
       by 0x459F3F: PyObject_Free (obmalloc.c:1166)
       by 0x51379F: fixstate (acceler.c:124)
       by 0x51344F: fixdfa (acceler.c:60)
       by 0x513369: PyGrammar_AddAccelerators (acceler.c:30)
       by 0x513C84: PyParser_New (parser.c:77)
       by 0x417D73: parsetok (parsetok.c:136)
       by 0x417D1B: PyParser_ParseFileFlagsEx (parsetok.c:106)
       by 0x4DF284: PyParser_ASTFromFile (pythonrun.c:1476)
       by 0x4CD570: parse_source_module (import.c:829)
       by 0x4CDB2A: load_source_module (import.c:1006)
       by 0x4CF05B: load_module (import.c:1822)
History
Date User Action Args
2012-05-29 12:29:23cassousetrecipients: + cassou, lemburg, tim.peters, vstinner
2012-05-29 12:29:23cassousetmessageid: <1338294563.1.0.472607755254.issue14951@psf.upfronthosting.co.za>
2012-05-29 12:29:22cassoulinkissue14951 messages
2012-05-29 12:29:21cassoucreate