From c26e289b9f0a27bde985180aaa749cbcdfd3db2f Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich Date: Sat, 7 Feb 2009 16:20:03 +0200 Subject: [PATCH] panel: fixed crash when rename/copy (introduced by revert of mhl_strmove) g_strconcat expects 0 as last argument, but mhl_strmove is not. When reverting this detail was overlooked. Returning 0 as last argument. Signed-off-by: Sergei Trofimovich --- src/file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/file.c b/src/file.c index 81de8da94..9e0e8c2f4 100644 --- a/src/file.c +++ b/src/file.c @@ -1805,7 +1805,7 @@ panel_operate (void *source_panel, FileOperation operation, else /* add trailing separator */ if (*dest_dir && strcmp(&dest_dir[strlen(dest_dir)-1], PATH_SEP_STR)) { - dest_dir_ = g_strconcat (dest_dir, PATH_SEP_STR); + dest_dir_ = g_strconcat (dest_dir, PATH_SEP_STR, (char*)0); } else { dest_dir_ = g_strdup (dest_dir); }