[nginx] svn commit: r4649 - trunk/src/http/modules
ru at nginx.com
ru at nginx.com
Mon May 28 14:20:04 UTC 2012
Author: ru
Date: 2012-05-28 14:20:04 +0000 (Mon, 28 May 2012)
New Revision: 4649
URL: http://trac.nginx.org/nginx/changeset/4649/nginx
Log:
Fixed broken build.
Modified:
trunk/src/http/modules/ngx_http_geoip_module.c
Modified: trunk/src/http/modules/ngx_http_geoip_module.c
===================================================================
--- trunk/src/http/modules/ngx_http_geoip_module.c 2012-05-28 13:17:48 UTC (rev 4648)
+++ trunk/src/http/modules/ngx_http_geoip_module.c 2012-05-28 14:20:04 UTC (rev 4649)
@@ -310,7 +310,7 @@
len = ngx_strlen(val);
v->data = ngx_pnalloc(r->pool, len);
if (v->data == NULL) {
- ngx_free(val);
+ ngx_free((void *) val);
return NGX_ERROR;
}
@@ -321,7 +321,7 @@
v->no_cacheable = 0;
v->not_found = 0;
- ngx_free(val);
+ ngx_free((void *) val);
return NGX_OK;
More information about the nginx-devel
mailing list