r12504 - in /branches/upstream/libquota-perl/current: CHANGES META.yml Quota.pm Quota.xs README

rmayorga-guest at users.alioth.debian.org rmayorga-guest at users.alioth.debian.org
Fri Jan 11 00:02:55 UTC 2008


Author: rmayorga-guest
Date: Fri Jan 11 00:02:53 2008
New Revision: 12504

URL: http://svn.debian.org/wsvn/?sc=1&rev=12504
Log:
[svn-upgrade] Integrating new upstream version, libquota-perl (1.6.2)

Modified:
    branches/upstream/libquota-perl/current/CHANGES
    branches/upstream/libquota-perl/current/META.yml
    branches/upstream/libquota-perl/current/Quota.pm
    branches/upstream/libquota-perl/current/Quota.xs
    branches/upstream/libquota-perl/current/README

Modified: branches/upstream/libquota-perl/current/CHANGES
URL: http://svn.debian.org/wsvn/branches/upstream/libquota-perl/current/CHANGES?rev=12504&op=diff
==============================================================================
--- branches/upstream/libquota-perl/current/CHANGES (original)
+++ branches/upstream/libquota-perl/current/CHANGES Fri Jan 11 00:02:53 2008
@@ -1,3 +1,7 @@
+Changes in 1.6.2 (January 2008)
+- Fixed memory leak in RPC authentication
+  Thanks again to Kostik (koc at rol.ru)
+
 Changes in 1.6.1 (November 2007)
 - Adapted hints/bsd.h to use statvfs instead of statfs in NetBSD 3.0
 - Added support for extended quota RPC to allow querying group quotas.

Modified: branches/upstream/libquota-perl/current/META.yml
URL: http://svn.debian.org/wsvn/branches/upstream/libquota-perl/current/META.yml?rev=12504&op=diff
==============================================================================
--- branches/upstream/libquota-perl/current/META.yml (original)
+++ branches/upstream/libquota-perl/current/META.yml Fri Jan 11 00:02:53 2008
@@ -1,7 +1,7 @@
 --- #YAML:1.0
 name: Quota
 abstract: Quota - Perl interface to file system quotas
-version: 1.6.1
+version: 1.6.2
 author:
   - Tom Zoerner <tomzo at users.sourceforge.net>
 license: perl
@@ -11,6 +11,6 @@
 excludes_os: MSWin32
 no_index:
   directory:
-  - contrib
+    - contrib
 resources:
   license: http://dev.perl.org/licenses/

Modified: branches/upstream/libquota-perl/current/Quota.pm
URL: http://svn.debian.org/wsvn/branches/upstream/libquota-perl/current/Quota.pm?rev=12504&op=diff
==============================================================================
--- branches/upstream/libquota-perl/current/Quota.pm (original)
+++ branches/upstream/libquota-perl/current/Quota.pm Fri Jan 11 00:02:53 2008
@@ -22,7 +22,7 @@
 @ISA = qw(Exporter DynaLoader);
 @EXPORT = ();
 
-$VERSION = '1.6.1';
+$VERSION = '1.6.2';
 
 bootstrap Quota;
 

Modified: branches/upstream/libquota-perl/current/Quota.xs
URL: http://svn.debian.org/wsvn/branches/upstream/libquota-perl/current/Quota.xs?rev=12504&op=diff
==============================================================================
--- branches/upstream/libquota-perl/current/Quota.xs (original)
+++ branches/upstream/libquota-perl/current/Quota.xs Fri Jan 11 00:02:53 2008
@@ -124,7 +124,12 @@
   timeout.tv_usec = (quota_rpc_cfg.timeout % 1000) * 1000;
   clnt_stat = clnt_call(client, procnum,
                         inproc, in, outproc, out, timeout);
-  if (client) clnt_destroy(client);
+
+  if (client->cl_auth) {
+    auth_destroy(client->cl_auth);
+    client->cl_auth = NULL;
+  }
+  clnt_destroy(client);
 
   return ((int) clnt_stat);
 }

Modified: branches/upstream/libquota-perl/current/README
URL: http://svn.debian.org/wsvn/branches/upstream/libquota-perl/current/README?rev=12504&op=diff
==============================================================================
--- branches/upstream/libquota-perl/current/README (original)
+++ branches/upstream/libquota-perl/current/README Fri Jan 11 00:02:53 2008
@@ -3,8 +3,8 @@
 
 Author:    Tom Zoerner (tomzo AT users.sourceforge.net)
 
-Version:   1.6.1
-Date:      November 2007
+Version:   1.6.2
+Date:      December 2007
 DLSIP-Code:Rcdfg
            - stable release
            - C compiler required for installation




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