patch 9.0.0116: virtual text not displayed if 'signcolumn' is "yes"

Problem:    Virtual text not displayed if 'signcolumn' is "yes".
Solution:   Set c_extra and c_final to NUL.
diff --git a/src/drawline.c b/src/drawline.c
index 7b16457..be9ed9d 100644
--- a/src/drawline.c
+++ b/src/drawline.c
@@ -1524,6 +1524,8 @@
 			if (p != NULL)
 			{
 			    p_extra = p;
+			    c_extra = NUL;
+			    c_final = NUL;
 			    n_extra = (int)STRLEN(p);
 			    extra_attr = used_attr;
 			    n_attr = n_extra;