From 7f009dfa064240d9024b76212535a35231912511 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Mon, 16 Mar 2020 20:27:38 +0100 Subject: patch 8.2.0394: Coverity complains about using NULL pointer Problem: Coverity complains about using NULL pointer. Solution: Use empty string when option value is NULL. --- src/version.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/version.c') diff --git a/src/version.c b/src/version.c index b0497a52c..717ca669e 100644 --- a/src/version.c +++ b/src/version.c @@ -738,6 +738,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 394, /**/ 393, /**/ -- cgit v1.2.1