From: Maxim Dounin Date: Sat, 11 May 2013 14:48:56 +0000 (+0400) Subject: Perl: extra "return" removed. X-Git-Url: http://www.kaiwu.me/postgresql/commit/static/gitweb.js?a=commitdiff_plain;h=1901e10d199a321ccf539fd13198746a1e6eeb10;p=nginx.git Perl: extra "return" removed. --- 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;