patch 8.1.1495: memory access error

Problem:    Memory access error.
Solution:   Use the correct size for clearing the popup mask.
diff --git a/src/screen.c b/src/screen.c
index fb10853..512560b 100644
--- a/src/screen.c
+++ b/src/screen.c
@@ -9345,7 +9345,7 @@
     TabPageIdxs = new_TabPageIdxs;
 #ifdef FEAT_TEXT_PROP
     popup_mask = new_popup_mask;
-    vim_memset(popup_mask, 0, screen_Rows * screen_Columns * sizeof(short));
+    vim_memset(popup_mask, 0, Rows * Columns * sizeof(short));
     popup_mask_refresh = TRUE;
 #endif