Patch 7.3.778
Problem: Compiler error for adding up two pointers. (Titov Anatoly)
Solution: Add a type cast. (Ken Takata)
Files: src/mbyte.c
*** ../vim-7.3.777/src/mbyte.c 2013-01-19 14:01:57.000000000 +0100
--- src/mbyte.c 2013-01-23 16:18:02.000000000 +0100
***************
*** 4325,4331 ****
{
if (IMAGE_SNAP_BY_ORDINAL(pINT->u1.Ordinal))
continue;
! pImpName = (PIMAGE_IMPORT_BY_NAME)(pImage + pINT->u1.AddressOfData);
if (strcmp(pImpName->Name, funcname) == 0)
return (void *)pIAT->u1.Function;
}
--- 4325,4332 ----
{
if (IMAGE_SNAP_BY_ORDINAL(pINT->u1.Ordinal))
continue;
! pImpName = (PIMAGE_IMPORT_BY_NAME)(pImage
! + (UINT_PTR)(pINT->u1.AddressOfData));
if (strcmp(pImpName->Name, funcname) == 0)
return (void *)pIAT->u1.Function;
}
*** ../vim-7.3.777/src/version.c 2013-01-23 16:00:05.000000000 +0100
--- src/version.c 2013-01-23 16:18:40.000000000 +0100
***************
*** 727,728 ****
--- 727,730 ----
{ /* Add new patch number below this line */
+ /**/
+ 778,
/**/
--
'I generally avoid temptation unless I can't resist it."
-- Mae West
/// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
\\\ an exciting new programming language -- http://www.Zimbu.org ///
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
--
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