From 1ca51e9f2feb3397de1b83d9b491d0c9696e93cb Mon Sep 17 00:00:00 2001 From: sebastid Date: Wed, 28 Sep 2005 19:46:58 +0000 Subject: [PATCH] Don't free mem, we need to wait until the event is processed. SVN revision: 17046 --- src/bin/e_ipc_handlers.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/bin/e_ipc_handlers.h b/src/bin/e_ipc_handlers.h index de1a86644..cfda580cc 100644 --- a/src/bin/e_ipc_handlers.h +++ b/src/bin/e_ipc_handlers.h @@ -948,12 +948,14 @@ break; count++; } END_RESPONSE(r, E_RESPONSE_MODULE_LIST); +#if 0 if (r->count) { for (count = 0; count < r->count; count++) free(r->modules[count]); free(r->modules); } +#endif } END_GENERIC(); #endif @@ -1491,7 +1493,9 @@ break; else if (!strcmp(type, "backgrounds")) res = E_RESPONSE_BACKGROUND_DIRS_LIST; END_RESPONSE(r, res); +#if 0 if (r->dirs) free(r->dirs); +#endif } END_GENERIC(); #endif