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.
This commit is contained in:
ChunEon Park 2015-08-29 16:59:19 +09:00
parent 0647f68770
commit d71182af7a
1 changed files with 1 additions and 1 deletions

View File

@ -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;