]> git.ipfire.org Git - thirdparty/cups.git/blobdiff - ppdc/ppdc-shared.cxx
Fix source file header text duplication text duplication.
[thirdparty/cups.git] / ppdc / ppdc-shared.cxx
index 1a83564b9c405a6a5b3c6a0d1064c3ffc9eabc3a..bb288786f65f66999412b6d62085c7228f1a7a89 100644 (file)
@@ -1,23 +1,14 @@
 //
-// "$Id$"
+// Shared data class for the CUPS PPD Compiler.
 //
-//   Shared data class for the CUPS PPD Compiler.
+// Copyright 2007-2009 by Apple Inc.
+// Copyright 2002-2005 by Easy Software Products.
 //
-//   Copyright 2007-2009 by Apple Inc.
-//   Copyright 2002-2005 by Easy Software Products.
-//
-//   These coded instructions, statements, and computer programs are the
-//   property of Apple Inc. and are protected by Federal copyright
-//   law.  Distribution and use rights are outlined in the file "LICENSE.txt"
-//   which should have been included with this file.  If this file is
-//   file is missing or damaged, see the license at "http://www.cups.org/".
-//
-// Contents:
-//
-//   ppdcShared::ppdcShared()  - Create shared data.
-//   ppdcShared::~ppdcShared() - Destroy shared data.
-//   ppdcShared::release()     - Decrement the use count and delete as needed.
-//   ppdcShared::retain()      - Increment the use count for this data.
+// These coded instructions, statements, and computer programs are the
+// property of Apple Inc. and are protected by Federal copyright
+// law.  Distribution and use rights are outlined in the file "LICENSE.txt"
+// which should have been included with this file.  If this file is
+// missing or damaged, see the license at "http://www.cups.org/".
 //
 
 //
@@ -56,7 +47,16 @@ ppdcShared::release(void)
   DEBUG_printf(("%s: %p release use=%d", class_name(), this, use));
 
   use --;
-  if (!use)
+
+#ifdef DEBUG
+  if (use < 0)
+  {
+    fprintf(stderr, "ERROR: Over-release of %s: %p\n", class_name(), this);
+    abort();
+  }
+#endif /* DEBUG */
+
+  if (use == 0)
     delete this;
 }
 
@@ -72,8 +72,3 @@ ppdcShared::retain()
 
   DEBUG_printf(("%s: %p retain use=%d", class_name(), this, use));
 }
-
-
-//
-// End of "$Id$".
-//