Reduce the max stack depth to see if this fixes the segfaults on

Windows and some other boxes.  If this is successful, this rev should
be backported.  I'm not sure how close to the limit we should push this.
This commit is contained in:
Neal Norwitz 2007-05-17 06:11:36 +00:00
parent 5cd0fca9d8
commit 117ef0863b
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@
* and risks coring the interpreter. When the object stack gets this deep,
* raise an exception instead of continuing.
*/
#define MAX_MARSHAL_STACK_DEPTH 5000
#define MAX_MARSHAL_STACK_DEPTH 4000
#define TYPE_NULL '0'
#define TYPE_NONE 'N'