summaryrefslogtreecommitdiffstats
path: root/src/userfunc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/userfunc.c')
-rw-r--r--src/userfunc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/userfunc.c b/src/userfunc.c
index e21f15c142..d8c943b23d 100644
--- a/src/userfunc.c
+++ b/src/userfunc.c
@@ -870,7 +870,7 @@ get_function_body(
end = p + STRLEN(p) - 1;
while (end > p && VIM_ISWHITE(*end))
--end;
- if (*end == '{')
+ if (end > p && *end == '{')
{
--end;
while (end > p && VIM_ISWHITE(*end))