projects
/
platform
/
upstream
/
enlightenment.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0af376f
)
e: remove if in E_FREE
author
Boris Faure
<billiob@gmail.com>
Sun, 19 Jun 2011 19:44:40 +0000
(19:44 +0000)
committer
Boris Faure
<billiob@gmail.com>
Sun, 19 Jun 2011 19:44:40 +0000
(19:44 +0000)
SVN revision: 60494
src/bin/e.h
patch
|
blob
|
history
diff --git
a/src/bin/e.h
b/src/bin/e.h
index
222d0a5
..
75c15c8
100644
(file)
--- a/
src/bin/e.h
+++ b/
src/bin/e.h
@@
-144,7
+144,7
@@
typedef struct _E_Rect E_Rect;
#define E_REALLOC(p, s, n) p = (s *)realloc(p, sizeof(s) * n)
#define E_NEW(s, n) (s *)calloc(n, sizeof(s))
#define E_NEW_BIG(s, n) (s *)malloc(n * sizeof(s))
-#define E_FREE(p) do {
if (p) {free(p); p = NULL;}
} while (0)
+#define E_FREE(p) do {
free(p); p = NULL;
} while (0)
#define E_FREE_LIST(list, free) \
do \
{ \