summaryrefslogtreecommitdiff
path: root/notifier
diff options
context:
space:
mode:
authormsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>2012-03-30 05:59:14 +0000
committermsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>2012-03-30 05:59:14 +0000
commit82cc1f9ac32564e92bfbbe7a1de416f4ebcc8584 (patch)
treeaf43377451e06dac91d6639e35b1b5bf41d14d4e /notifier
parent3e7fe0ca760ad0054cf5c9ec7c90ca415cf6eb06 (diff)
downloadcups-82cc1f9ac32564e92bfbbe7a1de416f4ebcc8584.tar.gz
Merge changes from CUPS 1.6svn-r10390.
git-svn-id: svn+ssh://src.apple.com/svn/cups/easysw/current@3755 a1ca3aef-8c08-0410-bb20-df032aa958be
Diffstat (limited to 'notifier')
-rw-r--r--notifier/rss.c13
1 files changed, 11 insertions, 2 deletions
diff --git a/notifier/rss.c b/notifier/rss.c
index f42c921a2..deee6b5b7 100644
--- a/notifier/rss.c
+++ b/notifier/rss.c
@@ -3,7 +3,7 @@
*
* RSS notifier for CUPS.
*
- * Copyright 2007-2011 by Apple Inc.
+ * Copyright 2007-2012 by Apple Inc.
* Copyright 2007 by Easy Software Products.
*
* These coded instructions, statements, and computer programs are the
@@ -252,7 +252,7 @@ main(int argc, /* I - Number of command-line arguments */
{
/*
* Save the messages to the file again, uploading as needed...
- */
+ */
if (save_rss(rss, newname, baseurl))
{
@@ -554,6 +554,15 @@ load_rss(cups_array_t *rss, /* I - RSS messages */
sequence_number = atoi(start + 6);
}
+ if (subject)
+ free(subject);
+
+ if (text)
+ free(text);
+
+ if (link_url)
+ free(link_url);
+
fclose(fp);
}