Remove unused variable.

svn path=/trunk/netsurf/; revision=13048
This commit is contained in:
Michael Drake 2011-10-14 20:54:18 +00:00
parent bdbffb7aa6
commit c69e75220d
1 changed files with 0 additions and 5 deletions

View File

@ -1730,7 +1730,6 @@ nserror nsurl_join(const nsurl *base, const char *rel, nsurl **joined)
} else if (joined_parts & NSURL_F_MERGED_PATH) {
struct url_markers m_path;
size_t path_len;
size_t new_length;
if (base->host != NULL && base->path == NULL) {
@ -1739,8 +1738,6 @@ nserror nsurl_join(const nsurl *base, const char *rel, nsurl **joined)
memcpy(buff_pos, rel + m.path, m.query - m.path);
buff_pos += m.query - m.path;
path_len = 1 + m.query - m.path;
} else {
/* Append relative path to all but last segment of
* base path. */
@ -1761,8 +1758,6 @@ nserror nsurl_join(const nsurl *base, const char *rel, nsurl **joined)
/* Copy the relative part */
memcpy(buff_pos, rel + m.path, m.query - m.path);
buff_pos += m.query - m.path;
path_len = path_end + m.query - m.path;
}
/* add termination to string */