From 9ab50f28e35677e1e7f4ce96993afb3401753ad3 Mon Sep 17 00:00:00 2001 From: Mukund Sivaraman Date: Mon, 10 Oct 2011 09:57:58 +0530 Subject: [PATCH] help-browser: Delete dead variable and assignment --- plug-ins/help-browser/uri.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/plug-ins/help-browser/uri.c b/plug-ins/help-browser/uri.c index 48d8df0ca7..84cb76fe90 100644 --- a/plug-ins/help-browser/uri.c +++ b/plug-ins/help-browser/uri.c @@ -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;