- Patchlevel 63
This commit is contained in:
parent
89942913a1
commit
6dc7fc7f08
45
7.0.063
Normal file
45
7.0.063
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
To: vim-dev@vim.org
|
||||||
|
Subject: Patch 7.0.063
|
||||||
|
Fcc: outbox
|
||||||
|
From: Bram Moolenaar <Bram@moolenaar.net>
|
||||||
|
Mime-Version: 1.0
|
||||||
|
Content-Type: text/plain; charset=ISO-8859-1
|
||||||
|
Content-Transfer-Encoding: 8bit
|
||||||
|
------------
|
||||||
|
|
||||||
|
Patch 7.0.063
|
||||||
|
Problem: Tiny chance for a memory leak. (coverity)
|
||||||
|
Solution: Free pointer when next memory allocation fails.
|
||||||
|
Files: src/eval.c
|
||||||
|
|
||||||
|
|
||||||
|
*** ../vim-7.0.062/src/eval.c Wed Aug 16 19:34:59 2006
|
||||||
|
--- src/eval.c Wed Aug 16 21:33:24 2006
|
||||||
|
***************
|
||||||
|
*** 18811,18816 ****
|
||||||
|
--- 18811,18817 ----
|
||||||
|
if (dict_add(fudi.fd_dict, fudi.fd_di) == FAIL)
|
||||||
|
{
|
||||||
|
vim_free(fudi.fd_di);
|
||||||
|
+ vim_free(fp);
|
||||||
|
goto erret;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
*** ../vim-7.0.062/src/version.c Wed Aug 16 21:42:34 2006
|
||||||
|
--- src/version.c Wed Aug 16 22:02:57 2006
|
||||||
|
***************
|
||||||
|
*** 668,669 ****
|
||||||
|
--- 668,671 ----
|
||||||
|
{ /* Add new patch number below this line */
|
||||||
|
+ /**/
|
||||||
|
+ 63,
|
||||||
|
/**/
|
||||||
|
|
||||||
|
--
|
||||||
|
hundred-and-one symptoms of being an internet addict:
|
||||||
|
167. You have more than 200 websites bookmarked.
|
||||||
|
|
||||||
|
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
||||||
|
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
||||||
|
\\\ download, build and distribute -- http://www.A-A-P.org ///
|
||||||
|
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|
@ -78,3 +78,13 @@ Individual patches for Vim 7.0:
|
|||||||
6097 7.0.051 (after 7.0.44) compile and/or run problem with Perl interface
|
6097 7.0.051 (after 7.0.44) compile and/or run problem with Perl interface
|
||||||
2237 7.0.052 the Vim server may expose more functionality than expected
|
2237 7.0.052 the Vim server may expose more functionality than expected
|
||||||
1379 7.0.053 shortening multi-byte directory name may fail
|
1379 7.0.053 shortening multi-byte directory name may fail
|
||||||
|
2464 7.0.054 using an empty menu name may cause a crash
|
||||||
|
2204 7.0.055 ":startins" in CmdwinEnter autocmd doesn't work immediately
|
||||||
|
1484 7.0.056 can't use "#!" in Vim scripts to make them executable
|
||||||
|
1779 7.0.057 (extra, after 7.0.45) compilation trouble with Borland C 5.5
|
||||||
|
1423 7.0.058 gbk and gb18030 encodings are not recognized
|
||||||
|
2110 7.0.059 Perl interface doesn't compile with ActiveState Perl 5.8.8
|
||||||
|
18082 7.0.060 code for switching buffers is repeated in several places
|
||||||
|
2249 7.0.061 crash in Vim command completion when nothing to complete
|
||||||
|
4075 7.0.062 Mac: crash when using popup menu with spell error
|
||||||
|
1295 7.0.063 tiny chance for a memory leak
|
||||||
|
28
vim.spec
28
vim.spec
@ -15,7 +15,7 @@
|
|||||||
#used for pre-releases:
|
#used for pre-releases:
|
||||||
%define beta %{nil}
|
%define beta %{nil}
|
||||||
%define vimdir vim70%{?beta}
|
%define vimdir vim70%{?beta}
|
||||||
%define patchlevel 053
|
%define patchlevel 063
|
||||||
|
|
||||||
Summary: The VIM editor.
|
Summary: The VIM editor.
|
||||||
Name: vim
|
Name: vim
|
||||||
@ -98,6 +98,16 @@ Patch050: ftp://ftp.vim.org/pub/vim/patches/7.0/7.0.050
|
|||||||
Patch051: ftp://ftp.vim.org/pub/vim/patches/7.0/7.0.051
|
Patch051: ftp://ftp.vim.org/pub/vim/patches/7.0/7.0.051
|
||||||
Patch052: ftp://ftp.vim.org/pub/vim/patches/7.0/7.0.052
|
Patch052: ftp://ftp.vim.org/pub/vim/patches/7.0/7.0.052
|
||||||
Patch053: ftp://ftp.vim.org/pub/vim/patches/7.0/7.0.053
|
Patch053: ftp://ftp.vim.org/pub/vim/patches/7.0/7.0.053
|
||||||
|
Patch054: ftp://ftp.vim.org/pub/vim/patches/7.0/7.0.054
|
||||||
|
Patch055: ftp://ftp.vim.org/pub/vim/patches/7.0/7.0.055
|
||||||
|
Patch056: ftp://ftp.vim.org/pub/vim/patches/7.0/7.0.056
|
||||||
|
Patch057: ftp://ftp.vim.org/pub/vim/patches/7.0/7.0.057
|
||||||
|
Patch058: ftp://ftp.vim.org/pub/vim/patches/7.0/7.0.058
|
||||||
|
Patch059: ftp://ftp.vim.org/pub/vim/patches/7.0/7.0.059
|
||||||
|
Patch060: ftp://ftp.vim.org/pub/vim/patches/7.0/7.0.060
|
||||||
|
Patch061: ftp://ftp.vim.org/pub/vim/patches/7.0/7.0.061
|
||||||
|
Patch062: ftp://ftp.vim.org/pub/vim/patches/7.0/7.0.062
|
||||||
|
Patch063: ftp://ftp.vim.org/pub/vim/patches/7.0/7.0.063
|
||||||
|
|
||||||
|
|
||||||
Patch3000: vim-7.0-syntax.patch
|
Patch3000: vim-7.0-syntax.patch
|
||||||
@ -281,6 +291,17 @@ perl -pi -e "s,bin/nawk,bin/awk,g" runtime/tools/mve.awk
|
|||||||
%patch051 -p0
|
%patch051 -p0
|
||||||
%patch052 -p0
|
%patch052 -p0
|
||||||
%patch053 -p0
|
%patch053 -p0
|
||||||
|
%patch054 -p0
|
||||||
|
%patch055 -p0
|
||||||
|
%patch056 -p0
|
||||||
|
# Win32:
|
||||||
|
#patch057 -p0
|
||||||
|
%patch058 -p0
|
||||||
|
%patch059 -p0
|
||||||
|
%patch060 -p0
|
||||||
|
%patch061 -p0
|
||||||
|
%patch062 -p0
|
||||||
|
%patch063 -p0
|
||||||
|
|
||||||
%patch3000 -p1
|
%patch3000 -p1
|
||||||
%patch3001 -p1
|
%patch3001 -p1
|
||||||
@ -604,7 +625,10 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%{_datadir}/icons/hicolor/*/apps/*
|
%{_datadir}/icons/hicolor/*/apps/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Wed Aug 09 2006 Karsten Hopp <karsten@redhat.de> 7.0.053-1
|
* Wed Aug 17 2006 Karsten Hopp <karsten@redhat.de> 7.0.063-1
|
||||||
|
- Patchlevel 63
|
||||||
|
|
||||||
|
* Wed Aug 15 2006 Karsten Hopp <karsten@redhat.de> 7.0.053-1
|
||||||
- Patchlevel 53
|
- Patchlevel 53
|
||||||
- Buildrequires libXpm-devel
|
- Buildrequires libXpm-devel
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user