Clean up init_fifo() by removing impossible conditions
authoruranther <jwheaton@purdue.edu>
Wed, 10 Jun 2009 23:56:21 +0000 (19:56 -0400)
committeruranther <jwheaton@purdue.edu>
Wed, 10 Jun 2009 23:56:21 +0000 (19:56 -0400)
uzbl.c

diff --git a/uzbl.c b/uzbl.c
index a94bac5..3449ea7 100644 (file)
--- a/uzbl.c
+++ b/uzbl.c
@@ -1694,18 +1694,6 @@ control_fifo(GIOChannel *gio, GIOCondition condition) {
 
 static gchar*
 init_fifo(gchar *dir) { /* return dir or, on error, free dir and return NULL */
-    if (uzbl.comm.fifo_path) { /* get rid of the old fifo if one exists */
-        if (unlink(uzbl.comm.fifo_path) == -1)
-            g_warning ("Fifo: Can't unlink old fifo at %s\n", uzbl.comm.fifo_path);
-        g_free(uzbl.comm.fifo_path);
-        uzbl.comm.fifo_path = NULL;
-    }
-
-    if (*dir == ' ') { /* space unsets the variable */
-        g_free (dir);
-        return NULL;
-    }
-
     GIOChannel *chan = NULL;
     GError *error = NULL;
     gchar *path = build_stream_name(FIFO, dir);