summaryrefslogtreecommitdiff
path: root/browser.c
diff options
context:
space:
mode:
authorPeter Hofmann <scm@uninformativ.de>2014-06-19 10:07:06 +0200
committerPeter Hofmann <scm@uninformativ.de>2014-06-19 10:10:27 +0200
commit13987df7e800305b03013fd743ab12fa1621a67a (patch)
tree4954a264f4bc3e6ce19359b53e42599d155b8e4c /browser.c
parent60b2a2d151dbab3fc5c2ca8d1f8c98109efc6067 (diff)
downloadlariza-13987df7e800305b03013fd743ab12fa1621a67a.tar.gz
Shorten some code
Diffstat (limited to 'browser.c')
-rw-r--r--browser.c12
1 files changed, 4 insertions, 8 deletions
diff --git a/browser.c b/browser.c
index ee9843f..4d6ea04 100644
--- a/browser.c
+++ b/browser.c
@@ -123,8 +123,7 @@ adblock_load(void)
GRegex *re = NULL;
GError *err = NULL;
GIOChannel *channel = NULL;
- gchar *path = NULL;
- gchar *buf = NULL;
+ gchar *path = NULL, *buf = NULL;
path = g_build_filename(g_get_user_config_dir(), __NAME__, "adblock.black",
NULL);
@@ -328,8 +327,7 @@ cooperation_setup(void)
{
GIOChannel *towatch;
const gchar *e;
- gchar *fifofilename;
- gchar *fifopath;
+ gchar *fifofilename, *fifopath;
e = g_getenv(__NAME_UPPERCASE__"_FIFO_SUFFIX");
if (e != NULL)
@@ -816,8 +814,7 @@ keywords_load(void)
{
GError *err = NULL;
GIOChannel *channel = NULL;
- gchar *path = NULL;
- gchar *buf = NULL;
+ gchar *path = NULL, *buf = NULL;
gchar **tokens = NULL;
keywords = g_hash_table_new(g_str_hash, g_str_equal);
@@ -851,8 +848,7 @@ keywords_try_search(WebKitWebView *web_view, const gchar *t)
{
gboolean ret = FALSE;
gchar **tokens = NULL;
- gchar *val = NULL;
- gchar *uri = NULL;
+ gchar *val = NULL, *uri = NULL;
tokens = g_strsplit(t, " ", 2);
if (tokens[0] != NULL && tokens[1] != NULL)