diff options
author | Todd T. Fries <todd@fries.net> | 2012-07-26 14:48:42 -0500 |
---|---|---|
committer | Todd T. Fries <todd@fries.net> | 2012-07-26 14:48:42 -0500 |
commit | d1d38bdc14f139a42fce365e622ec362fa374b10 (patch) | |
tree | 8991048afa08e517d519e0b1b6eb5bbb645d9e9b | |
parent | b1556c9645b5cd7b3f029d92c4110a7466b24f7b (diff) | |
download | xombrero-d1d38bdc14f139a42fce365e622ec362fa374b10.tar.gz |
missed a strdup() -> g_strdup()
-rw-r--r-- | about.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/about.c b/about.c index 818b681..43fda38 100644 --- a/about.c +++ b/about.c @@ -1521,7 +1521,7 @@ xtp_page_cl(struct tab *t, struct karg *args) "[ Remove All Cookies From All Domains ]</a></div>\n", XT_XTP_STR, XT_XTP_CL, cl_session_key, XT_XTP_CL_REMOVE_ALL); - last_domain = strdup(""); + last_domain = g_strdup(""); for (; sc; sc = sc->next) { c = sc->data; |