help-browser: Delete dead variable and assignment

This commit is contained in:
Mukund Sivaraman
2011-10-10 09:57:58 +05:30
parent 6fe92ac75b
commit 9ab50f28e3

View File

@ -135,7 +135,6 @@ uri_to_abs (const gchar *uri,
gint base_cnt = 0; /* no of chars to be copied from base URI */
gint uri_cnt = 0; /* no of chars to be copied from URI */
gint sep_cnt = 0; /* no of chars to be inserted between them */
gint path_offset = -1;
const gchar *sep_str = ""; /* string to insert between base and uri */
const gchar *part;
@ -206,8 +205,6 @@ uri_to_abs (const gchar *uri,
base_cnt += cptr - part;
}
path_offset = base_cnt;
if (uri_type == URI_ABSPATH)
break;