hermet pushed a commit to branch master.

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

commit d71182af7a3c787b30cd6a5747b9d5f055fee003
Author: ChunEon Park <her...@hermet.pe.kr>
Date:   Sat Aug 29 16:59:19 2015 +0900

    ecore win32: increase command buffer size.
    
    PATH_MAX is not enough for command.
    Even in this case, the buffer is not being used only for path.
---
 src/lib/ecore/ecore_exe_win32.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lib/ecore/ecore_exe_win32.c b/src/lib/ecore/ecore_exe_win32.c
index 6e6226c..f03b05b 100644
--- a/src/lib/ecore/ecore_exe_win32.c
+++ b/src/lib/ecore/ecore_exe_win32.c
@@ -362,7 +362,7 @@ _impl_ecore_exe_run_priority_get(void)
 Eo *
 _impl_ecore_exe_eo_base_finalize(Eo *obj, Ecore_Exe_Data *exe)
 {
-   char exe_cmd_buf[PATH_MAX];
+   char exe_cmd_buf[1024];
    SECURITY_ATTRIBUTES sa;
    STARTUPINFO si;
    PROCESS_INFORMATION pi;

-- 


Reply via email to