Commit 117ef086 authored by Neal Norwitz's avatar Neal Norwitz

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.
parent 5cd0fca9
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
* and risks coring the interpreter. When the object stack gets this deep, * and risks coring the interpreter. When the object stack gets this deep,
* raise an exception instead of continuing. * raise an exception instead of continuing.
*/ */
#define MAX_MARSHAL_STACK_DEPTH 5000 #define MAX_MARSHAL_STACK_DEPTH 4000
#define TYPE_NULL '0' #define TYPE_NULL '0'
#define TYPE_NONE 'N' #define TYPE_NONE 'N'
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment