URI:
       tCleanup remaining unused variables and copystr() - surf - customized build of surf, the suckless webkit browser
  HTML git clone git://src.adamsgaard.dk/surf
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit 7e9a85a5cb31a2ddefd06498eff33df724bdc6cf
   DIR parent adc650f3999aeb9a781efad10b91b74ae5371f11
  HTML Author: Quentin Rameau <quinq@fifth.space>
       Date:   Fri, 20 Nov 2015 17:42:25 +0100
       
       Cleanup remaining unused variables and copystr()
       
       Diffstat:
         M surf.c                              |      18 ------------------
       
       1 file changed, 0 insertions(+), 18 deletions(-)
       ---
   DIR diff --git a/surf.c b/surf.c
       t@@ -109,7 +109,6 @@ static gboolean showxid = FALSE;
        static char winid[64];
        static char togglestats[10];
        static char pagestats[2];
       -static GTlsDatabase *tlsdb;
        static int cookiepolicy;
        static char *stylefile = NULL;
        static const char *useragent;
       t@@ -124,7 +123,6 @@ static void clipboard(Client *c, const Arg *a);
        static WebKitCookieAcceptPolicy cookiepolicy_get(void);
        static char cookiepolicy_set(const WebKitCookieAcceptPolicy p);
        
       -static char *copystr(char **str, const char *src);
        static GtkWidget *createview(WebKitWebView *v, WebKitNavigationAction *a,
                        Client *c);
        static gboolean decidepolicy(WebKitWebView *v, WebKitPolicyDecision *d,
       t@@ -379,19 +377,6 @@ clipboard(Client *c, const Arg *a)
                }
        }
        
       -char *
       -copystr(char **str, const char *src)
       -{
       -        char *tmp;
       -        tmp = g_strdup(src);
       -
       -        if (str && *str) {
       -                g_free(*str);
       -                *str = tmp;
       -        }
       -        return tmp;
       -}
       -
        GtkWidget *
        createview(WebKitWebView *v, WebKitNavigationAction *a, Client *c)
        {
       t@@ -876,7 +861,6 @@ Client *
        newclient(Client *rc)
        {
                Client *c;
       -        gdouble dpi;
        
                if (!(c = calloc(1, sizeof(Client))))
                        die("Cannot malloc!\n");
       t@@ -1235,8 +1219,6 @@ void
        setup(void)
        {
                int i;
       -        WebKitWebContext *context;
       -        GError *error = NULL;
        
                /* clean up any zombies immediately */
                sigchld(0);