diff options
| author | Maxim Dounin <mdounin@mdounin.ru> | 2013-05-11 18:48:56 +0400 |
|---|---|---|
| committer | Maxim Dounin <mdounin@mdounin.ru> | 2013-05-11 18:48:56 +0400 |
| commit | 1901e10d199a321ccf539fd13198746a1e6eeb10 (patch) | |
| tree | 279687c7cfc691b49cf1bac75a5ea9718d20b6d8 | |
| parent | 8d096180d2a7a807a4ec54dfea90d015ffe6158a (diff) | |
| download | nginx-1901e10d199a321ccf539fd13198746a1e6eeb10.tar.gz nginx-1901e10d199a321ccf539fd13198746a1e6eeb10.tar.bz2 | |
Perl: extra "return" removed.
| -rw-r--r-- | src/http/modules/perl/nginx.xs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/modules/perl/nginx.xs b/src/http/modules/perl/nginx.xs index bbfef079c..de67d5127 100644 --- a/src/http/modules/perl/nginx.xs +++ b/src/http/modules/perl/nginx.xs @@ -419,7 +419,7 @@ request_body(r) p = ngx_pnalloc(r->pool, len); if (p == NULL) { - return XSRETURN_UNDEF; + XSRETURN_UNDEF; } data = p; |
