patch 7.4.1290
Problem:    Coverity complains about uneccessary check for NULL.
Solution:   Remove the check.
diff --git a/src/eval.c b/src/eval.c
index e3edff6..b544fc3 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -14375,8 +14375,7 @@
 
 theend:
 #ifdef USE_ARGV
-    if (argv != NULL)
-	vim_free(argv);
+    vim_free(argv);
 #else
     vim_free(ga.ga_data);
 #endif
diff --git a/src/version.c b/src/version.c
index b9ca107..66739aa 100644
--- a/src/version.c
+++ b/src/version.c
@@ -748,6 +748,8 @@
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    1290,
+/**/
     1289,
 /**/
     1288,