|
Hi All, After applying the above patch, gvim fails to compile on Windows (x64 in my case) complaining that "res" is undeclared in function "convert_filterW" (line 3294). This patch appears to fix. Cheers John -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php |
*** gui_w48_orig.c 2012-01-21 06:34:14.546374100 +1100
--- gui_w48.c 2012-01-21 06:35:36.764076700 +1100
***************
*** 3284,3293 ****
--- 3284,3294 ----
static WCHAR *
convert_filterW(char_u *s)
{
char_u *tmp;
int len;
+ WCHAR *res = NULL;
tmp = convert_filter(s);
if (tmp == NULL)
return NULL;
len = (int)STRLEN(s) + 3;
