diff options
author | krakjoe <pthreads@pthreads.org> | 2015-01-09 07:45:21 +0000 |
---|---|---|
committer | krakjoe <pthreads@pthreads.org> | 2015-01-09 07:45:21 +0000 |
commit | 159c33184407fbf1eaa060ddc88664a3d4b7c9ea (patch) | |
tree | 036bd3a4f93b41744451f396a817ee8018b53040 /ext/standard/php_dns.h | |
parent | 8c9415e5d762202a560de9fe7a3fd640f2a966a3 (diff) | |
download | php-git-159c33184407fbf1eaa060ddc88664a3d4b7c9ea.tar.gz |
optimization for bug report #68679
Diffstat (limited to 'ext/standard/php_dns.h')
-rw-r--r-- | ext/standard/php_dns.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/php_dns.h b/ext/standard/php_dns.h index f37bce539a..af6c091881 100644 --- a/ext/standard/php_dns.h +++ b/ext/standard/php_dns.h @@ -34,7 +34,7 @@ res_nsearch(res, dname, class, type, answer, anslen); #define php_dns_free_handle(res) \ res_nclose(res); \ - php_dns_free_res(*res) + php_dns_free_res(res) #elif defined(HAVE_RES_SEARCH) #define php_dns_search(res, dname, class, type, answer, anslen) \ |