Unnecessary initialization
authorGustavo Noronha Silva <gns@gnome.org>
Fri, 25 Dec 2009 22:46:03 +0000 (20:46 -0200)
committerGustavo Noronha Silva <gns@gnome.org>
Tue, 29 Dec 2009 00:39:44 +0000 (22:39 -0200)
libsoup/soup-uri.c

index ffc4f1d..77312b7 100644 (file)
@@ -303,7 +303,7 @@ soup_uri_new_with_base (SoupURI *base, const char *uri_string)
        }
 
        if (remove_dot_segments && uri->path && *uri->path) {
-               char *p = uri->path, *q;
+               char *p, *q;
 
                /* Remove "./" where "." is a complete segment. */
                for (p = uri->path + 1; *p; ) {