diff options
author | 2009-12-14 19:35:59 +0000 | |
---|---|---|
committer | 2009-12-14 19:35:59 +0000 | |
commit | 42034560ed1f3f0d42f82207d1607ae0c87d1163 (patch) | |
tree | 63792408a96d3a784d705b94a30bc32de267067c | |
parent | wrote one byte too far, found by parfait; ok beck millert (diff) | |
download | wireguard-openbsd-42034560ed1f3f0d42f82207d1607ae0c87d1163.tar.xz wireguard-openbsd-42034560ed1f3f0d42f82207d1607ae0c87d1163.zip |
could write one word too far, found by parfait; ok millert
-rw-r--r-- | usr.sbin/httpd/src/modules/ssl/ssl_util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/httpd/src/modules/ssl/ssl_util.c b/usr.sbin/httpd/src/modules/ssl/ssl_util.c index 7a87dfe38bb..e23e3703c9e 100644 --- a/usr.sbin/httpd/src/modules/ssl/ssl_util.c +++ b/usr.sbin/httpd/src/modules/ssl/ssl_util.c @@ -277,7 +277,7 @@ char *ssl_util_ptxtsub( pool *p, const char *cpLine, const char *cpMatch, char *cpSubst) { #define MAX_PTXTSUB 100 - char *cppMatch[MAX_PTXTSUB]; + char *cppMatch[MAX_PTXTSUB + 1]; char *cpResult; int nResult; int nLine; |