cedric pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=1d27699bc6cc2bed0e65b8375792ea4555bfb782
commit 1d27699bc6cc2bed0e65b8375792ea4555bfb782 Author: Cedric BAIL <[email protected]> Date: Tue Jul 28 02:55:32 2015 +0200 ecore_con: fix test to actually send a NULL terminated string. --- src/tests/ecore_con/ecore_con_test_ecore_con_eet.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests/ecore_con/ecore_con_test_ecore_con_eet.c b/src/tests/ecore_con/ecore_con_test_ecore_con_eet.c index 932c32a..cdb7af4 100644 --- a/src/tests/ecore_con/ecore_con_test_ecore_con_eet.c +++ b/src/tests/ecore_con/ecore_con_test_ecore_con_eet.c @@ -90,7 +90,7 @@ _eet_svr_cnct_cb(void *data, Ecore_Con_Reply *reply, Ecore_Con_Client *conn EINA ecore_con_eet_send(reply, TEST_STREAM, &toSend); else ecore_con_eet_raw_send(reply, TEST_STREAM, "message", rawMsg, - strlen(rawMsg)); + strlen(rawMsg) + 1); return EINA_TRUE; } --
