From 5db14b2c48ccb9a5f60c7f22b79f90d6145641c7 Mon Sep 17 00:00:00 2001 From: Michael Vetter Date: Mon, 20 Apr 2020 15:54:32 +0200 Subject: [PATCH] Fix parsing of alias command This actually only set the local ran pointer to NULL. But we want an effect on the outside variable. --- src/command/cmd_funcs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/command/cmd_funcs.c b/src/command/cmd_funcs.c index 815f8650..2ad66b5b 100644 --- a/src/command/cmd_funcs.c +++ b/src/command/cmd_funcs.c @@ -8082,7 +8082,7 @@ static gboolean _cmd_execute_alias(ProfWin *window, const char *const inp, gboolean *ran) { if (inp[0] != '/') { - ran = FALSE; + *ran = FALSE; return TRUE; }