From 1901e10d199a321ccf539fd13198746a1e6eeb10 Mon Sep 17 00:00:00 2001 From: Maxim Dounin Date: Sat, 11 May 2013 18:48:56 +0400 Subject: Perl: extra "return" removed. --- src/http/modules/perl/nginx.xs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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; -- cgit