]> git.ipfire.org Git - thirdparty/cups.git/blobdiff - scheduler/banners.c
License change: Apache License, Version 2.0.
[thirdparty/cups.git] / scheduler / banners.c
index 31847ad2fd103acd3d06e5aecc54cbd1fad64c6a..e9399230209ab1475c729d7b7f5fe5167acf14f2 100644 (file)
@@ -1,33 +1,10 @@
 /*
- * "$Id: banners.c 5947 2006-09-12 13:58:22Z mike $"
+ * Banner routines for the CUPS scheduler.
  *
- *   Banner routines for the Common UNIX Printing System (CUPS).
+ * Copyright 2007-2011 by Apple Inc.
+ * Copyright 1997-2006 by Easy Software Products.
  *
- *   Copyright 1997-2006 by Easy Software Products.
- *
- *   These coded instructions, statements, and computer programs are the
- *   property of Easy Software Products 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 please contact Easy Software Products
- *   at:
- *
- *       Attn: CUPS Licensing Information
- *       Easy Software Products
- *       44141 Airport View Drive, Suite 204
- *       Hollywood, Maryland 20636 USA
- *
- *       Voice: (301) 373-9600
- *       EMail: cups-info@cups.org
- *         WWW: http://www.cups.org
- *
- * Contents:
- *
- *   cupsdFindBanner()  - Find a named banner.
- *   cupsdLoadBanners() - Load all available banner files...
- *   add_banner()       - Add a banner to the array.
- *   compare_banners()  - Compare two banners.
- *   free_banners()     - Free all banners.
+ * Licensed under Apache License v2.0.  See the file "LICENSE" for more information.
  */
 
 /*
@@ -156,8 +133,8 @@ add_banner(const char *name,                /* I - Name of banner */
   if ((filetype = mimeFileType(MimeDatabase, filename, NULL, NULL)) == NULL)
   {
     cupsdLogMessage(CUPSD_LOG_WARN,
-                    "add_banner: Banner \"%s\" (\"%s\") is of an unknown file type - skipping!",
-                    name, filename);
+                    "add_banner: Banner \"%s\" (\"%s\") is of an unknown file "
+                   "type - skipping!", name, filename);
     return;
   }
 
@@ -165,13 +142,27 @@ add_banner(const char *name,              /* I - Name of banner */
   * Allocate memory...
   */
 
-  temp = calloc(1, sizeof(cupsd_banner_t));
+  if ((temp = calloc(1, sizeof(cupsd_banner_t))) == NULL)
+  {
+    cupsdLogMessage(CUPSD_LOG_WARN,
+                    "add_banner: Unable to allocate memory for banner \"%s\" - "
+                   "skipping!", name);
+    return;
+  }
 
  /*
   * Copy the new banner data over...
   */
 
-  temp->name     = strdup(name);
+  if ((temp->name = strdup(name)) == NULL)
+  {
+    cupsdLogMessage(CUPSD_LOG_WARN,
+                    "add_banner: Unable to allocate memory for banner \"%s\" - "
+                   "skipping!", name);
+    free(temp);
+    return;
+  }
+
   temp->filetype = filetype;
 
   cupsArrayAdd(Banners, temp);
@@ -187,7 +178,7 @@ compare_banners(
     const cupsd_banner_t *b0,          /* I - First banner */
     const cupsd_banner_t *b1)          /* I - Second banner */
 {
-  return (strcasecmp(b0->name, b1->name));
+  return (_cups_strcasecmp(b0->name, b1->name));
 }
 
 
@@ -212,8 +203,3 @@ free_banners(void)
   cupsArrayDelete(Banners);
   Banners = NULL;
 }
-
-
-/*
- * End of "$Id: banners.c 5947 2006-09-12 13:58:22Z mike $".
- */