diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2013-12-30 20:12:00 +0100 |
---|---|---|
committer | Tom Hacohen <tom@stosb.com> | 2014-04-10 04:20:20 +0100 |
commit | 56ae6cf32e0e15080bf8c9478bf5ebb960ad18d6 (patch) | |
tree | eceee1858b8347511c89e576fee0533f7339a678 | |
parent | adb5b8776d9b527ed02869807a0d593b674f80f9 (diff) | |
download | efl-56ae6cf32e0e15080bf8c9478bf5ebb960ad18d6.tar.gz |
eo2: remove memset() in _eo2_do_end() as all stack fields are set in _eo2_do_start()
-rw-r--r-- | src/lib/eo/eo.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/lib/eo/eo.c b/src/lib/eo/eo.c index fdd0665927..3a5e99559d 100644 --- a/src/lib/eo/eo.c +++ b/src/lib/eo/eo.c @@ -425,7 +425,6 @@ _eo2_do_end(const Eo **eo_id EINA_UNUSED) if(fptr->o.obj) _eo_unref(fptr->o.obj); - memset(fptr, 0, sizeof (Eo2_Stack_Frame)); fptr->obj_data = EO2_INVALID_DATA; if (fptr == eo2_call_stack.stack) |