aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrederic Culot <calcurse@culot.org>2008-05-03 19:54:14 +0000
committerFrederic Culot <calcurse@culot.org>2008-05-03 19:54:14 +0000
commit309dba9950a83fc69cd895fc1a6bd52870a124a6 (patch)
tree354e7cbde6fbaec56e6b0a332c6316b1c0d3c564
parent3bc0f4df84089bd3d23b1aff77f06ebc3ece947e (diff)
downloadcalcurse-309dba9950a83fc69cd895fc1a6bd52870a124a6.tar.gz
calcurse-309dba9950a83fc69cd895fc1a6bd52870a124a6.zip
memory leaks fixed, thanks Tony for reporting them
-rwxr-xr-xsrc/recur.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/recur.c b/src/recur.c
index c862188..3188678 100755
--- a/src/recur.c
+++ b/src/recur.c
@@ -1,4 +1,4 @@
-/* $calcurse: recur.c,v 1.35 2008/04/12 21:14:03 culot Exp $ */
+/* $calcurse: recur.c,v 1.36 2008/05/03 19:54:14 culot Exp $ */
/*
* Calcurse - text-based organizer
@@ -60,7 +60,6 @@ recur_apoint_new (char *mesg, char *note, long start, long dur, char state,
malloc (sizeof (recur_apoint_llist_node_t));
o->rpt = (struct rpt_s *) malloc (sizeof (struct rpt_s));
o->mesg = (char *) malloc (strlen (mesg) + 1);
- o->exc = (struct days_s *) malloc (sizeof (struct days_s));
strncpy (o->mesg, mesg, strlen (mesg) + 1);
o->note = (note != NULL) ? strdup (note) : NULL;
o->start = start;
@@ -98,7 +97,6 @@ recur_event_new (char *mesg, char *note, long day, int id, int type, int freq,
o->rpt = (struct rpt_s *) malloc (sizeof (struct rpt_s));
o->mesg = (char *) malloc (strlen (mesg) + 1);
o->note = (note != NULL) ? strdup (note) : NULL;
- o->exc = (struct days_s *) malloc (sizeof (struct days_s));
strncpy (o->mesg, mesg, strlen (mesg) + 1);
o->day = day;
o->id = id;
@@ -655,7 +653,7 @@ recur_repeat_item (conf_t *conf)
_("Enter the ending date: [%s] or '0' for an endless repetition");
char *mesg_wrong_1 = _("The entered date is not valid.");
char *mesg_wrong_2 =
- _("Possible formats are [%s] or '0' for an endless repetetition");
+ _("Possible formats are [%s] or '0' for an endless repetition");
char *wrong_type_1 = _("This item is already a repeated one.");
char *wrong_type_2 = _("Press [ENTER] to continue.");
char *mesg_older =