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 keescook
Recipients Thomas.Smith, dmalcolm, doko, ezio.melotti, keescook, liang, neologix, pitrou, tim.peters, vstinner
Date 2010-04-21.18:44:04
SpamBayes Score 3.2138047e-05
Marked as misclassified No
Message-id <1271875447.87.0.0340295956804.issue7332@psf.upfronthosting.co.za>
In-reply-to
Content
The stack protector will add 8 (aligned, so possibly padded) bytes to each stack frame of functions with arrays of 8 or greater bytes.  So if things are marginal, this could make the difference between Pythons compiled with/without -fstack-protector.

N.B. if rPath is compiled with -D_FORTIFY_SOURCE=2 and -O1, then -D_FORTIFY_SOURCE=2 has no effect (it is only activated at -O2 or higher).

Details on Ubuntu's compiler flag defaults:
https://wiki.ubuntu.com/CompilerFlags

Putting MAXPATH on the stack certainly seems like a big waste of space, though.  :)
History
Date User Action Args
2010-04-21 18:44:07keescooksetrecipients: + keescook, tim.peters, doko, pitrou, vstinner, ezio.melotti, dmalcolm, liang, Thomas.Smith, neologix
2010-04-21 18:44:07keescooksetmessageid: <1271875447.87.0.0340295956804.issue7332@psf.upfronthosting.co.za>
2010-04-21 18:44:04keescooklinkissue7332 messages
2010-04-21 18:44:04keescookcreate