summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ares_getnameinfo.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ares_getnameinfo.c b/ares_getnameinfo.c
index 4eeed94..23a5c79 100644
--- a/ares_getnameinfo.c
+++ b/ares_getnameinfo.c
@@ -312,7 +312,8 @@ static char *ares_striendstr(const char *s1, const char *s2)
return NULL;
/* Jump to the end of s1 minus the length of s2 */
- c1 = (const char *)c1_begin = s1+s1_len-s2_len;
+ c1_begin = s1+s1_len-s2_len;
+ c1 = (const char *)c1_begin;
c2 = s2;
while (c2 < s2+s2_len)
{