summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorCedric BAIL <cedric.bail@free.fr>2012-07-05 01:12:27 +0000
committerCedric BAIL <cedric.bail@free.fr>2012-07-05 01:12:27 +0000
commit9a8cc1f78c635d00867c57e5eaf0dc468e18105a (patch)
tree7908f74fdcc92bb87b5d59da8f3da5123d99292a /ChangeLog
parent359757c999c9a692d65e88931784e73b26eec4c9 (diff)
downloadeina-9a8cc1f78c635d00867c57e5eaf0dc468e18105a.tar.gz
eina: handle gracefully eina_*_free with NULL.
Patch by Raphael Kubo da Costa <rakuco@freebsd.org>. SVN revision: 73320
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog20
1 files changed, 12 insertions, 8 deletions
diff --git a/ChangeLog b/ChangeLog
index db8b643..2e73efb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -280,12 +280,12 @@
* Fix portability issue of Eina_Value on ARM and PPC.
* Fix portability issue of Eina_Value test on Itanium.
-2012-05-23 Carsten Haitzler (The Rasterman)
+2012-05-23 Carsten Haitzler (The Rasterman)
* Fix global_faulty faulty flag in eina_file to be set to 0
initially rather than be random memory garbage.
-2012-05-29 Vincent Torri
+2012-05-29 Vincent Torri
* remove --disable-posix-threads and --disable-win32-threads
from configure options, and detect automatically the threading
@@ -293,20 +293,24 @@
Fix bug in the XML parser when a tag was in a comment or a
cdata
-2012-06-08 Mike Blumenkrantz
+2012-06-08 Mike Blumenkrantz
* Fixed eina_str_split_full() to behave properly and be much faster
-2012-06-17 Carsten Haitzler (The Rasterman)
+2012-06-17 Carsten Haitzler (The Rasterman)
* Add env var EINA_MEMPOOL_PASS to force mempool to try use
passthrough to malloc for debgging purposes and memory footrpint
comparisons at runtime.
-2012-07-01 Vincent Torri
+2012-07-01 Vincent Torri
- * remove --enable-coverage from configure options,
+ * Remove --enable-coverage from configure options,
-2012-07-04 Vincent Torri
+2012-07-04 Vincent Torri
- * implement eina_file_map_lines() on Windows
+ * Implement eina_file_map_lines() on Windows.
+
+2012-07-05 Raphael Kubo da Costa
+
+ * Handle NULL in all eina_*_free function.