discomfitor pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=4f2b4d870abfea7c95bf7caf337ad9c5d4575199

commit 4f2b4d870abfea7c95bf7caf337ad9c5d4575199
Author: Mike Blumenkrantz <[email protected]>
Date:   Fri Jul 28 15:44:43 2017 -0400

    efl-wl: escape command args from test
---
 src/bin/efl_wl/efl_wl_test.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/bin/efl_wl/efl_wl_test.c b/src/bin/efl_wl/efl_wl_test.c
index 29361ee920..cb50a5d84e 100644
--- a/src/bin/efl_wl/efl_wl_test.c
+++ b/src/bin/efl_wl/efl_wl_test.c
@@ -41,7 +41,7 @@ main(int argc, char *argv[])
    buf = eina_strbuf_new();
    for (i = 1; i < argc; i++)
      {
-        eina_strbuf_append(buf, argv[i]);
+        eina_strbuf_append_escaped(buf, argv[i]);
         if (i + 1 < argc) eina_strbuf_append_char(buf, ' ');
      }
 

-- 


Reply via email to