diff options
author | Bradley Nicholes <bnicholes@apache.org> | 2004-07-16 20:30:43 +0000 |
---|---|---|
committer | Bradley Nicholes <bnicholes@apache.org> | 2004-07-16 20:30:43 +0000 |
commit | 6e231373bc1c09955a89b4ab8be2d98dde58663a (patch) | |
tree | 6c95a0bd892bcbfa8a02cc35d2700af0c2c81d0c /os | |
parent | 9fc8e1bfdf452b3cf8e1f6022bdb2c587fed25db (diff) | |
download | httpd-6e231373bc1c09955a89b4ab8be2d98dde58663a.tar.gz |
Allocate memory from the temp_pool rather than the stack to avoid blowing fixed length stacks while evaluating nested includes
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@104310 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'os')
-rw-r--r-- | os/netware/pre_nw.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/os/netware/pre_nw.h b/os/netware/pre_nw.h index 910ab57cda..0f2a9327a9 100644 --- a/os/netware/pre_nw.h +++ b/os/netware/pre_nw.h @@ -60,6 +60,9 @@ /* Allow MOD_AUTH_DBM to use APR */ #define AP_AUTH_DBM_USE_APR +/* Restrict the number of nested includes */ +#define AP_MAX_INCLUDE_DEPTH 48 + #endif |