diff options
author | Frederic Culot <calcurse@culot.org> | 2009-07-15 18:48:43 +0000 |
---|---|---|
committer | Frederic Culot <calcurse@culot.org> | 2009-07-15 18:48:43 +0000 |
commit | 3fe85503732c885bd3833b9c1c56a8a70d45f253 (patch) | |
tree | 634a2e3b530cd83cd847cd89b2caec59169a1f6a /src | |
parent | 56a29600ad7a1e91fe0b0b0f3747092552319a46 (diff) | |
download | calcurse-3fe85503732c885bd3833b9c1c56a8a70d45f253.tar.gz calcurse-3fe85503732c885bd3833b9c1c56a8a70d45f253.zip |
Fixed a bug related to memory management (a free on a null pointer causes an abort now, which induces side effects on file import).
Diffstat (limited to 'src')
-rwxr-xr-x | src/io.c | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -1,4 +1,4 @@ -/* $calcurse: io.c,v 1.68 2009/07/12 17:48:13 culot Exp $ */ +/* $calcurse: io.c,v 1.69 2009/07/15 18:48:44 culot Exp $ */ /* * Calcurse - text-based organizer @@ -1666,7 +1666,8 @@ ical_store_todo (int priority, char *mesg, char *note) { todo_add (mesg, priority, note); mem_free (mesg); - mem_free (note); + if (note) + mem_free (note); } static void @@ -1720,7 +1721,8 @@ ical_store_apoint (char *mesg, char *note, long start, long dur, apoint_new (mesg, note, start, dur, state); } mem_free (mesg); - mem_free (note); + if (note) + mem_free (note); } /* |