r74230 - in /trunk/libnet-ssh2-perl: Changes META.yml SSH2.xs debian/changelog lib/Net/SSH2.pm

carnil at users.alioth.debian.org carnil at users.alioth.debian.org
Thu May 12 06:03:09 UTC 2011


Author: carnil
Date: Thu May 12 06:02:32 2011
New Revision: 74230

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=74230
Log:
New upstream version

Modified:
    trunk/libnet-ssh2-perl/Changes
    trunk/libnet-ssh2-perl/META.yml
    trunk/libnet-ssh2-perl/SSH2.xs
    trunk/libnet-ssh2-perl/debian/changelog
    trunk/libnet-ssh2-perl/lib/Net/SSH2.pm

Modified: trunk/libnet-ssh2-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-ssh2-perl/Changes?rev=74230&op=diff
==============================================================================
--- trunk/libnet-ssh2-perl/Changes (original)
+++ trunk/libnet-ssh2-perl/Changes Thu May 12 06:02:32 2011
@@ -1,4 +1,7 @@
 Revision history for Perl extension Net::SSH2.
+
+0.35  2011-05-10 17:43:17
+        - fix for segfault due to auth_list() (RT#68060)
 
 0.34  2011-05-07 08:34:35
         - fix trace option to ->new

Modified: trunk/libnet-ssh2-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-ssh2-perl/META.yml?rev=74230&op=diff
==============================================================================
--- trunk/libnet-ssh2-perl/META.yml (original)
+++ trunk/libnet-ssh2-perl/META.yml Thu May 12 06:02:32 2011
@@ -21,7 +21,7 @@
 provides:
   Net::SSH2:
     file: lib/Net/SSH2.pm
-    version: 0.34
+    version: 0.35
   Net::SSH2::Channel:
     file: lib/Net/SSH2/Channel.pm
   Net::SSH2::Dir:
@@ -39,4 +39,4 @@
 resources:
   license: http://dev.perl.org/licenses/
   repository: git://github.com/rkitover/net-ssh2.git
-version: 0.34
+version: 0.35

Modified: trunk/libnet-ssh2-perl/SSH2.xs
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-ssh2-perl/SSH2.xs?rev=74230&op=diff
==============================================================================
--- trunk/libnet-ssh2-perl/SSH2.xs (original)
+++ trunk/libnet-ssh2-perl/SSH2.xs Thu May 12 06:02:32 2011
@@ -789,7 +789,7 @@
         count = split_comma(sp, auth);
     else
         PUSHs(sv_2mortal(newSVpv(auth, 0)));
-    Safefree(auth);
+    /* Safefree(auth); this causes a double-free segfault */
     XSRETURN(count);
 
 void
@@ -1153,7 +1153,7 @@
         NULL, NULL, NULL, NULL, NULL);
     if (exitsignal) {
         RETVAL = newSVpv(exitsignal, 0);
-        libssh2_free(ch->ss->session, exitsignal);
+        Safefree(exitsignal);
     }
 OUTPUT:
     RETVAL

Modified: trunk/libnet-ssh2-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-ssh2-perl/debian/changelog?rev=74230&op=diff
==============================================================================
--- trunk/libnet-ssh2-perl/debian/changelog (original)
+++ trunk/libnet-ssh2-perl/debian/changelog Thu May 12 06:02:32 2011
@@ -1,3 +1,9 @@
+libnet-ssh2-perl (0.35-1) UNRELEASED; urgency=low
+
+  * New upstream release
+
+ -- Salvatore Bonaccorso <carnil at debian.org>  Thu, 12 May 2011 07:58:44 +0200
+
 libnet-ssh2-perl (0.34-1) unstable; urgency=low
 
   * New upstream release

Modified: trunk/libnet-ssh2-perl/lib/Net/SSH2.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-ssh2-perl/lib/Net/SSH2.pm?rev=74230&op=diff
==============================================================================
--- trunk/libnet-ssh2-perl/lib/Net/SSH2.pm (original)
+++ trunk/libnet-ssh2-perl/lib/Net/SSH2.pm Thu May 12 06:02:32 2011
@@ -208,7 +208,7 @@
 
 our @EXPORT_OK = @{$EXPORT_TAGS{all}};
 
-our $VERSION = '0.34';
+our $VERSION = '0.35';
 
 # methods
 




More information about the Pkg-perl-cvs-commits mailing list