summaryrefslogtreecommitdiff
path: root/memcache
diff options
context:
space:
mode:
authorJeff Trawick <trawick@apache.org>2013-06-17 11:26:35 +0000
committerJeff Trawick <trawick@apache.org>2013-06-17 11:26:35 +0000
commite8a48bf6ac0179875f7f7cd8650dbe5eda95d195 (patch)
tree858ff498fbfa22bf6620c944bb6774c706dbdc1b /memcache
parent28237162d8cead150a7f72fb0b5d3af0c71c95c7 (diff)
downloadapr-e8a48bf6ac0179875f7f7cd8650dbe5eda95d195.tar.gz
fix crash introduced in r1484271
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@1493715 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'memcache')
-rw-r--r--memcache/apr_memcache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/memcache/apr_memcache.c b/memcache/apr_memcache.c
index 781f34255..c5710d8b2 100644
--- a/memcache/apr_memcache.c
+++ b/memcache/apr_memcache.c
@@ -328,7 +328,7 @@ mc_conn_construct(void **conn_, void *params, apr_pool_t *pool)
apr_pool_t *tp;
apr_memcache_server_t *ms = params;
#if APR_HAVE_SOCKADDR_UN
- apr_int32_t family = conn->ms->host[0] != '/' ? APR_INET : APR_UNIX;
+ apr_int32_t family = ms->host[0] != '/' ? APR_INET : APR_UNIX;
#else
apr_int32_t family = APR_INET;
#endif