dnsapi: Remove a dead assignment (clang).

Hans Leidekker hans at codeweavers.com
Fri Feb 3 03:47:42 CST 2012


---
 dlls/dnsapi/query.c |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/dlls/dnsapi/query.c b/dlls/dnsapi/query.c
index 8de33e6..72490c5 100644
--- a/dlls/dnsapi/query.c
+++ b/dlls/dnsapi/query.c
@@ -159,8 +159,7 @@ static char *dns_dname_from_msg( ns_msg msg, const unsigned char *pos )
     char *str, dname[NS_MAXDNAME] = ".";
 
     /* returns *compressed* length, ignore it */
-    len = dns_ns_name_uncompress( ns_msg_base( msg ), ns_msg_end( msg ),
-                                  pos, dname, sizeof(dname) );
+    dns_ns_name_uncompress( ns_msg_base(msg), ns_msg_end(msg), pos, dname, sizeof(dname) );
 
     len = strlen( dname );
     str = heap_alloc( len + 1 );
-- 
1.7.8.3






More information about the wine-patches mailing list