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 <slyfox@inbox.ru>
Этот коммит содержится в:
родитель
97bdf084f8
Коммит
c26e289b9f
@ -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);
|
||||
}
|
||||
|
Загрузка…
x
Ссылка в новой задаче
Block a user