Fix clang warning: Although the value stored to 'next'
authorFabian Keil <fk@fabiankeil.de>
Tue, 19 May 2009 17:39:59 +0000 (17:39 +0000)
committerFabian Keil <fk@fabiankeil.de>
Tue, 19 May 2009 17:39:59 +0000 (17:39 +0000)
is used in the enclosing expression, the value is never
actually read from 'next'.

urlmatch.c

index 19388b1..d888e37 100644 (file)
@@ -1,4 +1,4 @@
-const char urlmatch_rcs[] = "$Id: urlmatch.c,v 1.50 2009/04/17 11:38:28 fabiankeil Exp $";
+const char urlmatch_rcs[] = "$Id: urlmatch.c,v 1.51 2009/05/16 13:27:20 fabiankeil Exp $";
 /*********************************************************************
  *
  * File        :  $Source: /cvsroot/ijbswa/current/urlmatch.c,v $
@@ -1222,7 +1222,7 @@ int match_portlist(const char *portlist, int port)
 {
    char *min, *max, *next, *portlist_copy;
 
-   min = next = portlist_copy = strdup(portlist);
+   min = portlist_copy = strdup(portlist);
 
    /*
     * Zero-terminate first item and remember offset for next