]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
patch 9.0.1085: compiler warns for uninitialized variable v9.0.1085
authorBram Moolenaar <Bram@vim.org>
Tue, 20 Dec 2022 20:47:28 +0000 (20:47 +0000)
committerBram Moolenaar <Bram@vim.org>
Tue, 20 Dec 2022 20:47:28 +0000 (20:47 +0000)
Problem:    Compiler warns for uninitialized variable.
Solution:   Initialize the variable.  Remove unused function. (John Marriott)

src/os_win32.c
src/version.c

index f32d486a52d3fe11765f24fede619c13b8800f6f..20ec8adeb21735ff3ac770cadc19bf789e02b03a 100644 (file)
@@ -193,7 +193,6 @@ typedef struct input_record_buffer_S
     int length;
 } input_record_buffer_T;
 static input_record_buffer_T input_record_buffer;
-static int peek_input_record_buffer(INPUT_RECORD* irEvents, int nMaxLength);
 static int read_input_record_buffer(INPUT_RECORD* irEvents, int nMaxLength);
 static int write_input_record_buffer(INPUT_RECORD* irEvents, int nLength);
 #endif
@@ -1735,7 +1734,7 @@ encode_mouse_event(dict_T *args, INPUT_RECORD *ir)
     int                row;
     int                col;
     int                repeated_click;
-    int_u      mods;
+    int_u      mods = 0;
     int                move;
 
     if (!dict_has_key(args, "row") || !dict_has_key(args, "col"))
@@ -1878,18 +1877,6 @@ read_input_record_buffer(INPUT_RECORD* irEvents, int nMaxLength)
            input_record_buffer.tail = NULL;
     }
     return nCount;
-}
-    static int
-peek_input_record_buffer(INPUT_RECORD* irEvents, int nMaxLength)
-{
-    int nCount = 0;
-    input_record_buffer_node_T *temp =  input_record_buffer.head;
-    while (nCount < nMaxLength && temp != NULL)
-    {
-       irEvents[nCount++] = temp->ir;
-       temp = temp->next;
-    }
-    return nCount;
 }
 #endif // !FEAT_GUI_MSWIN || VIMDLL
 
index c5f3848bbd37f07f135f76594a488812a620e19a..4a3718d6965aa8f0a6b9fee1f7e184ab60303565 100644 (file)
@@ -695,6 +695,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1085,
 /**/
     1084,
 /**/