Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
RE: Segmentation fault при компиляции с --with-http_perl_module
On Thu, 20 Apr 2006, Butenin Andrey wrote:
Директив нет, пробовал все вышеописанное - со стандартным конфигом (тем, что
получается после make install).
Прилагаемый патч должен решить проблему.
Игорь Сысоев
http://sysoev.ru --- src/http/modules/perl/ngx_http_perl_module.c Wed Apr 19 14:17:04 2006
+++ src/http/modules/perl/ngx_http_perl_module.c Thu Apr 20 12:52:16 2006
@@ -483,8 +483,10 @@
}
#endif
- if (ngx_conf_full_name(cf->cycle, &pmcf->modules) != NGX_OK) {
- return NGX_CONF_ERROR;
+ if (pmcf->modules.data) {
+ if (ngx_conf_full_name(cf->cycle, &pmcf->modules) != NGX_OK) {
+ return NGX_CONF_ERROR;
+ }
}
PERL_SYS_INIT(&ngx_argc, &ngx_argv);
|