summaryrefslogtreecommitdiffstats
path: root/src/lib/eiotas_private.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/eiotas_private.h')
-rw-r--r--src/lib/eiotas_private.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/lib/eiotas_private.h b/src/lib/eiotas_private.h
index 7f610de..27ee9e8 100644
--- a/src/lib/eiotas_private.h
+++ b/src/lib/eiotas_private.h
@@ -56,6 +56,12 @@ int eiotas_iota_init(Eiotas_Iota *iota, const char *name, Eiotas_Iota *parent, E
return NULL; \
}
+#define STRINGSHARE_FREE(_st) \
+ if(_st) { \
+ eina_stringshare_del(_st); \
+ _st = NULL; \
+ }
+
#define BUILD_INSTANCE(_type,_x) \
_type *_x = (_type*)malloc(sizeof(_type)); \
if(_x==NULL) { \