Commit af395e970e087209028f8a9b455cd364ecb8db6d

Sam Lantinga 2014-04-23T13:47:35

Removed possible implicit memset()

1
2
3
4
5
6
7
8
9
10
11
12
13
14
diff --git a/src/video/windows/SDL_windowskeyboard.c b/src/video/windows/SDL_windowskeyboard.c
index 0f3c9fc..828e3ff 100644
--- a/src/video/windows/SDL_windowskeyboard.c
+++ b/src/video/windows/SDL_windowskeyboard.c
@@ -386,7 +386,8 @@ IME_GetReadingString(SDL_VideoData *videodata, HWND hwnd)
     INT err = 0;
     BOOL vertical = FALSE;
     UINT maxuilen = 0;
-    static OSVERSIONINFOA osversion = {0};
+	static OSVERSIONINFOA osversion;
+
     if (videodata->ime_uiless)
         return;