r41041 - in /branches/upstream/libnet-cups-perl/current: CUPS.xs Changes README lib/Net/CUPS.pm lib/Net/CUPS/Destination.pm lib/Net/CUPS/IPP.pm lib/Net/CUPS/PPD.pm

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Thu Jul 30 22:34:42 UTC 2009


Author: jawnsy-guest
Date: Thu Jul 30 22:34:35 2009
New Revision: 41041

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=41041
Log:
[svn-upgrade] Integrating new upstream version, libnet-cups-perl (0.60)

Modified:
    branches/upstream/libnet-cups-perl/current/CUPS.xs
    branches/upstream/libnet-cups-perl/current/Changes
    branches/upstream/libnet-cups-perl/current/README
    branches/upstream/libnet-cups-perl/current/lib/Net/CUPS.pm
    branches/upstream/libnet-cups-perl/current/lib/Net/CUPS/Destination.pm
    branches/upstream/libnet-cups-perl/current/lib/Net/CUPS/IPP.pm
    branches/upstream/libnet-cups-perl/current/lib/Net/CUPS/PPD.pm

Modified: branches/upstream/libnet-cups-perl/current/CUPS.xs
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnet-cups-perl/current/CUPS.xs?rev=41041&op=diff
==============================================================================
--- branches/upstream/libnet-cups-perl/current/CUPS.xs (original)
+++ branches/upstream/libnet-cups-perl/current/CUPS.xs Thu Jul 30 22:34:35 2009
@@ -461,7 +461,6 @@
 		/* If we use the following function, then we will get errors */
 		/* about double frees.                                       */
 		/*cupsFreeDests( 1, self );                                  */
-		free( self->name );
 		if( self->instance )
 			free( self->instance );
 		cupsFreeOptions( self->num_options, self->options );

Modified: branches/upstream/libnet-cups-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnet-cups-perl/current/Changes?rev=41041&op=diff
==============================================================================
--- branches/upstream/libnet-cups-perl/current/Changes (original)
+++ branches/upstream/libnet-cups-perl/current/Changes Thu Jul 30 22:34:35 2009
@@ -1,4 +1,9 @@
 Revision history for Perl extension Net::CUPS.
+
+0.60 Thu Jul 30 08:28:18 2009
+	- Graham Jenkins <graham at vpac.org> reported additional issues
+	  with the cleanup in the DESTROY method.  Tweaked it to avoid
+	  double free issues.
 
 0.59 Wed Sep  3 13:56:12 2008
 	- I really removed the test this time.

Modified: branches/upstream/libnet-cups-perl/current/README
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnet-cups-perl/current/README?rev=41041&op=diff
==============================================================================
--- branches/upstream/libnet-cups-perl/current/README (original)
+++ branches/upstream/libnet-cups-perl/current/README Thu Jul 30 22:34:35 2009
@@ -34,7 +34,7 @@
 COPYRIGHT AND LICENSE
 
 Copyright (C) 2003-2005 D. Hageman <dhageman at dracken.com>
-Copyright (C) 2006-2008 Dracken Technology, Inc. (http://www.dracken.com/)
+Copyright (C) 2006-2009 Dracken Technology, Inc. (http://www.dracken.com/)
 
 SPECIAL THANKS
 

Modified: branches/upstream/libnet-cups-perl/current/lib/Net/CUPS.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnet-cups-perl/current/lib/Net/CUPS.pm?rev=41041&op=diff
==============================================================================
--- branches/upstream/libnet-cups-perl/current/lib/Net/CUPS.pm (original)
+++ branches/upstream/libnet-cups-perl/current/lib/Net/CUPS.pm Thu Jul 30 22:34:35 2009
@@ -959,7 +959,7 @@
 	PPD_VERSION
 );
 
-our $VERSION = '0.59';
+our $VERSION = '0.60';
 
 sub AUTOLOAD {
     # This AUTOLOAD is used to 'autoload' constants from the constant()
@@ -1350,7 +1350,7 @@
 
 Copyright (c) 2003-2005 David Hageman 
 
-Copyright (c) 2006-2007 Dracken Technology, Inc.
+Copyright (c) 2006-2009 Dracken Technology, Inc.
 
 All rights reserved.
 

Modified: branches/upstream/libnet-cups-perl/current/lib/Net/CUPS/Destination.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnet-cups-perl/current/lib/Net/CUPS/Destination.pm?rev=41041&op=diff
==============================================================================
--- branches/upstream/libnet-cups-perl/current/lib/Net/CUPS/Destination.pm (original)
+++ branches/upstream/libnet-cups-perl/current/lib/Net/CUPS/Destination.pm Thu Jul 30 22:34:35 2009
@@ -961,7 +961,7 @@
 	PPD_VERSION
 );
 
-our $VERSION = '0.59';
+our $VERSION = '0.60';
 
 sub AUTOLOAD {
     # This AUTOLOAD is used to 'autoload' constants from the constant()
@@ -1294,7 +1294,7 @@
 
 Copyright (c) 2003-2005 David Hageman 
 
-Copyright (c) 2006-2007 Dracken Technology, Inc.
+Copyright (c) 2006-2009 Dracken Technology, Inc.
 
 All rights reserved.
 

Modified: branches/upstream/libnet-cups-perl/current/lib/Net/CUPS/IPP.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnet-cups-perl/current/lib/Net/CUPS/IPP.pm?rev=41041&op=diff
==============================================================================
--- branches/upstream/libnet-cups-perl/current/lib/Net/CUPS/IPP.pm (original)
+++ branches/upstream/libnet-cups-perl/current/lib/Net/CUPS/IPP.pm Thu Jul 30 22:34:35 2009
@@ -961,7 +961,7 @@
 	PPD_VERSION
 );
 
-our $VERSION = '0.59';
+our $VERSION = '0.60';
 
 sub AUTOLOAD {
     # This AUTOLOAD is used to 'autoload' constants from the constant()
@@ -1172,7 +1172,7 @@
 
 Copyright (c) 2003-2005 David Hageman 
 
-Copyright (c) 2006-2007 Dracken Technology, Inc.
+Copyright (c) 2006-2009 Dracken Technology, Inc.
 
 All rights reserved.
 

Modified: branches/upstream/libnet-cups-perl/current/lib/Net/CUPS/PPD.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnet-cups-perl/current/lib/Net/CUPS/PPD.pm?rev=41041&op=diff
==============================================================================
--- branches/upstream/libnet-cups-perl/current/lib/Net/CUPS/PPD.pm (original)
+++ branches/upstream/libnet-cups-perl/current/lib/Net/CUPS/PPD.pm Thu Jul 30 22:34:35 2009
@@ -964,7 +964,7 @@
 	PPD_VERSION
 );
 
-our $VERSION = '0.59';
+our $VERSION = '0.60';
 
 sub AUTOLOAD {
     # This AUTOLOAD is used to 'autoload' constants from the constant()
@@ -1219,7 +1219,7 @@
 
 Copyright (c) 2003-2005 David Hageman 
 
-Copyright (c) 2006-2007 Dracken Technology, Inc.
+Copyright (c) 2006-2009 Dracken Technology, Inc.
 
 All rights reserved.
 




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