From 15600f405f2d5bda6ccf0dd73957395716e0d4d3 Mon Sep 17 00:00:00 2001 From: Patrick Griffis Date: Sun, 11 Sep 2016 15:49:06 -0400 Subject: Sanitize network name for scrollback files This prevents using invalid chars on Windows or creating directories --- src/common/text.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src') diff --git a/src/common/text.c b/src/common/text.c index 2af8ab09..1e9b3132 100644 --- a/src/common/text.c +++ b/src/common/text.c @@ -79,6 +79,7 @@ scrollback_get_filename (session *sess) if (!net) return NULL; + net = log_create_filename (net); buf = g_strdup_printf ("%s" G_DIR_SEPARATOR_S "scrollback" G_DIR_SEPARATOR_S "%s" G_DIR_SEPARATOR_S "%s.txt", get_xdir (), net, ""); mkdir_p (buf); g_free (buf); @@ -89,6 +90,7 @@ scrollback_get_filename (session *sess) else buf = NULL; g_free (chan); + g_free (net); if (buf) { -- cgit 1.4.1