mirror of
git://slackware.nl/current.git
synced 2025-02-15 08:50:09 +01:00
![Patrick J Volkerding](/assets/img/avatar_default.png)
Mon Apr 25 13:37:00 UTC 2011 Slackware 13.37 x86_64 stable is released! Thanks to everyone who pitched in on this release: the Slackware team, the folks producing upstream code, and linuxquestions.org for providing a great forum for collaboration and testing. The ISOs are off to be replicated, a 6 CD-ROM 32-bit set and a dual-sided 32-bit/64-bit x86/x86_64 DVD. Please consider supporting the Slackware project by picking up a copy from store.slackware.com. We're taking pre-orders now, and offer a discount if you sign up for a subscription. As always, thanks to the Slackware community for testing, suggestions, and feedback. :-) Have fun!
97 lines
2.7 KiB
Text
97 lines
2.7 KiB
Text
To: vim_dev@googlegroups.com
|
|
Subject: Patch 7.3.096
|
|
Fcc: outbox
|
|
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Mime-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
------------
|
|
|
|
Patch 7.3.096
|
|
Problem: "gvim -nb" is not interruptable. Leaking file descriptor on
|
|
netbeans connection error.
|
|
Solution: Check for CTRL-C typed. Free file descriptor. (Xavier de Gaye)
|
|
Files: src/netbeans.c
|
|
|
|
|
|
*** ../vim-7.3.095/src/netbeans.c 2010-12-24 14:00:09.000000000 +0100
|
|
--- src/netbeans.c 2011-01-04 18:00:35.000000000 +0100
|
|
***************
|
|
*** 321,326 ****
|
|
--- 321,327 ----
|
|
{
|
|
nbdebug(("error in gethostbyname() in netbeans_connect()\n"));
|
|
PERROR("gethostbyname() in netbeans_connect()");
|
|
+ sock_close(sd);
|
|
goto theend;
|
|
}
|
|
memcpy((char *)&server.sin_addr, host->h_addr, host->h_length);
|
|
***************
|
|
*** 370,384 ****
|
|
|| (errno == EINTR)))
|
|
{
|
|
nbdebug(("retrying...\n"));
|
|
! sleep(5);
|
|
! if (!doabort)
|
|
{
|
|
! ui_breakcheck();
|
|
! if (got_int)
|
|
! {
|
|
! errno = EINTR;
|
|
! break;
|
|
! }
|
|
}
|
|
if (connect(sd, (struct sockaddr *)&server,
|
|
sizeof(server)) == 0)
|
|
--- 371,382 ----
|
|
|| (errno == EINTR)))
|
|
{
|
|
nbdebug(("retrying...\n"));
|
|
! mch_delay(3000L, TRUE);
|
|
! ui_breakcheck();
|
|
! if (got_int)
|
|
{
|
|
! errno = EINTR;
|
|
! break;
|
|
}
|
|
if (connect(sd, (struct sockaddr *)&server,
|
|
sizeof(server)) == 0)
|
|
***************
|
|
*** 393,398 ****
|
|
--- 391,397 ----
|
|
/* Get here when the server can't be found. */
|
|
nbdebug(("Cannot connect to Netbeans #2\n"));
|
|
PERROR(_("Cannot connect to Netbeans #2"));
|
|
+ sock_close(sd);
|
|
if (doabort)
|
|
getout(1);
|
|
goto theend;
|
|
***************
|
|
*** 403,408 ****
|
|
--- 402,408 ----
|
|
{
|
|
nbdebug(("Cannot connect to Netbeans\n"));
|
|
PERROR(_("Cannot connect to Netbeans"));
|
|
+ sock_close(sd);
|
|
if (doabort)
|
|
getout(1);
|
|
goto theend;
|
|
*** ../vim-7.3.095/src/version.c 2011-01-04 17:49:25.000000000 +0100
|
|
--- src/version.c 2011-01-04 18:09:46.000000000 +0100
|
|
***************
|
|
*** 716,717 ****
|
|
--- 716,719 ----
|
|
{ /* Add new patch number below this line */
|
|
+ /**/
|
|
+ 96,
|
|
/**/
|
|
|
|
--
|
|
hundred-and-one symptoms of being an internet addict:
|
|
85. Choice between paying Compuserve bill and paying for kids education
|
|
is a no brainer -- although a bit painful for your kids.
|
|
|
|
/// Bram Moolenaar -- Bram@Moolenaar.net -- 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 ///
|