summaryrefslogtreecommitdiffstats
path: root/src/eval.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2011-02-01 13:48:53 +0100
committerBram Moolenaar <Bram@vim.org>2011-02-01 13:48:53 +0100
commit3c2d6534ef1f3f4cdde96196e966d2d1669c4c74 (patch)
treedd6f5a1ad4eae360a0246af1fb240d0c09eeeeb6 /src/eval.c
parent5e3d6ca435321c82b3e97e536549a30dc3580e17 (diff)
updated for version 7.3.108v7.3.108
Problem: Useless check for NULL when calling vim_free(). Solution: Remove the check. (Dominique Pelle)
Diffstat (limited to 'src/eval.c')
-rw-r--r--src/eval.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/eval.c b/src/eval.c
index af4ba893ff..d7e8332b05 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -5106,9 +5106,7 @@ eval7(arg, rettv, evaluate, want_string)
else
ret = OK;
}
-
- if (alias != NULL)
- vim_free(alias);
+ vim_free(alias);
}
*arg = skipwhite(*arg);
@@ -19807,7 +19805,7 @@ set_var(name, tv, copy)
EMSG2(_("E704: Funcref variable name must start with a capital: %s"), name);
return;
}
- /* Don't allow hiding a function. When "v" is not NULL we migth be
+ /* Don't allow hiding a function. When "v" is not NULL we might be
* assigning another function to the same var, the type is checked
* below. */
if (v == NULL && function_exists(name))